Last active
September 22, 2023 13:58
-
-
Save niratama/e327ea8b7b7ea4e53b252f3a655ac879 to your computer and use it in GitHub Desktop.
JavaScriptのescape()でエスケープされない文字の一覧
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(new Array(128)).fill(0).map((v,i) => { c = String.fromCharCode(i); e = escape(c); return e === c ? c : ''; }) | |
// '*+-./0123456789@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment