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

I want to insert the space character into the innerHTML of a DOM element, but the space character must be declare in Unicode syntax.

For example, something like this: ...innerHTML += '\u83838383';

share|improve this question
3  
Why does it have to be? – Doug Neiner Feb 5 '10 at 4:46

1 Answer

I am not quite sure what character you are hoping to get with 8383 - not to mention 83838383, but it certainly doesn't seem to be the space character for any encodings I am familiar with. Are you by chance looking for:

  • ASCII Space =   = '\u0020'
  • En Space =   = '\u2002'
  • Em Space =   = '\u2003'
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.