0

Is there any way that I show '$' (or any ascii character) without using '$'? I mean, with TeX, 'k' is the same as ^^+. And I wonder if there is similar way to do in HTML.

prosseek
  • 182,215
  • 215
  • 566
  • 871
  • As far as HTML is considered, there is never any need to escape “$”. This question apparently relates to your other question http://stackoverflow.com/questions/13053659/how-to-show-the-string-inside-a-tag-verbatim – Jukka K. Korpela Oct 24 '12 at 19:33

1 Answers1

4

You can use:

$

To display a $ in HTML.

Fenton
  • 241,084
  • 71
  • 387
  • 401