I using javascript for converting UTM to WSG84 lon lat with the following code where the utm_zone contains the UTM zone number.
var utm = "+proj=utm +zone=";
utm = utm + "" + utm_zone;
var wgs84 = "+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs";
var lonlatArray = proj4(utm, wgs84, [utm_x, utm_y]);
But how can I parameterize for convert directly the UTM format to EOV (epsg:23700)?
Use the definition of EOV / EPSG:23700 from https://epsg.io/23700.
Example: