Tagged Questions

2
votes
1answer
1k views

How to convert with Ruby accented characters in HTML special entities

How can I do this on Ruby? puts some_method("ò") # => "ò" In other words convert an accented character like ò to his HTML version: ò I tried like this: # coding: utf-8 ...