Advertisement
javsmo

Untitled

Feb 11th, 2015
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. mysql> select word, hex(word) from oldword where word = 'cobijcas';
  2. +-------------+------------------------+
  3. | word | hex(word) |
  4. +-------------+------------------------+
  5. | cobijças | 636F62696AC3A76173 |
  6. | cobíj́cas | 636F62C3AD6ACC81636173 |
  7. +-------------+------------------------+
  8. 2 rows in set (0,05 sec)
  9.  
  10. mysql> select word, hex(word) from oldword where word like 'cobijcas';
  11. +-----------+--------------------+
  12. | word | hex(word) |
  13. +-----------+--------------------+
  14. | cobijças | 636F62696AC3A76173 |
  15. +-----------+--------------------+
  16. 1 row in set (0,05 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement