Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a function that will convert € or chr(0x20AC) or chr(8364) to € without having a static map.

I tried using htmlentities(), but it only seems to work for the symbol itself and it converts to €.

share|improve this question
1  
What do you want to convert it to? Not to mention that chr only works with ASCII characters (0 - 255). If you wanted to represent it with chr, you'd need to split it chr(0x20).chr(0xAC)... – ircmaxell Jun 15 '10 at 15:10
What character encoding is the input and what the desired output? – Gumbo Jun 15 '10 at 18:55

1 Answer

up vote 0 down vote accepted

ircmaxwell kind of answered the question in a round about way... what i was trying to do really isn't possible. I have circumvented the process by requiring the user to utilize the html entity instead.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.