https://unicode.org/reports/tr18/tr18-5.1.html
https://mathiasbynens.be/notes/javascript-unicode
https://mathiasbynens.be/notes/es6-unicode-regex
https://www.regular-expressions.info/unicode.html
https://regex101.com
https://caniuse.com/#feat=es5
https://github.com/mathiasbynens/regexpu
http://blog.stevenlevithan.com/archives/javascript-regex-and-unicode
How to convert your latin1 mysql table to utf8
Convert the existing columns content if there are unicode characters saved in non utf8 column: UPDATE `databasename`.`prescription_template_billing_item` SET description = @txt WHERE char_length(description) = LENGTH(@txt := CONVERT(BINARY CONVERT(description USING latin1) USING utf8)); Have MYSQL loop through . all of your tables and columns finding all the necessary columns which have types needing to be converted: … Continued