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
Unicode table - List of most common Unicode characters * | |
* This summary list contains about 2000 characters for most common ocidental/latin languages and most printable symbols but not chinese, japanese, arab, archaic and some unprintable. | |
Contains character codes in HEX (hexadecimal), decimal number, name/description and corresponding printable symbol. | |
What is Unicode? | |
Unicode is a standard created to define letters of all languages and characters such as punctuation and technical symbols. Today, UNICODE (UTF-8) is the most used character set encoding (used by almost 70% of websites, in 2013). The second most used character set is ISO-8859-1 (about 20% of websites), but this old encoding format is being replaced by Unicode. | |
How to identify the Unicode number for a character? | |
Type or paste a character: |
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
<!-- Documentation: http://docs.sublimetext.info/en/latest/extensibility/snippets.html --> | |
<!-- Clone or save this code as react-component.sublime-snippet into Data/Packages/User. No need to restart Sublime. | |
(If you Copy-Paste-SaveAs... with Sublime, be careful not to save as .xml. It's actually hard not to) --> | |
<snippet> | |
<content> | |
<![CDATA[ | |
${1:import React, { Component \} from 'react';} | |
class ${2:ComponentName} extends Component { |
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
<!-- Documentation: http://docs.sublimetext.info/en/latest/extensibility/snippets.html --> | |
<!-- Clone or save this code as js-try-catch.sublime-snippet into Data/Packages/User. No need to restart Sublime. | |
(If you Copy-Paste-SaveAs... with Sublime, be careful not to save as .xml. It's actually hard not to) --> | |
<!-- Use tabs in this file, not spaces --> | |
<snippet> | |
<content> | |
<![CDATA[ |
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
<!-- Documentation: http://docs.sublimetext.info/en/latest/extensibility/snippets.html --> | |
<!-- Clone or save this code as js-if.sublime-snippet into Data/Packages/User. No need to restart Sublime. | |
(If you Copy-Paste-SaveAs... with Sublime, be careful not to save as .xml. It's actually hard not to) --> | |
<snippet> | |
<content> | |
<![CDATA[ | |
if (${1:}) {${2:}} | |
]]> |
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
<!-- Documentation: http://docs.sublimetext.info/en/latest/extensibility/snippets.html --> | |
<!-- Clone or save this code as js-function.sublime-snippet into Data/Packages/User. No need to restart Sublime. | |
(If you Copy-Paste-SaveAs... with Sublime, be careful not to save as .xml. It's actually hard not to) --> | |
<snippet> | |
<content> | |
<![CDATA[ | |
function ${1:}(${2:}) { | |
${3:} |
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
<!-- Documentation: http://docs.sublimetext.info/en/latest/extensibility/snippets.html --> | |
<!-- Clone or save this code as js-console.log.sublime-snippet into Data/Packages/User. No need to restart Sublime. | |
(If you choose to Copy-Paste-SaveAs... with Sublime, be careful not to save as .xml. It's actually hard not to) --> | |
<snippet> | |
<content> | |
<![CDATA[console.log(${1:'${2:keep tabbing}: ', ${3:${2:}}});]]> | |
</content> | |
<!-- Set a tabTrigger: how to trigger the snippet --> |
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
<!-- Documentation: http://docs.sublimetext.info/en/latest/extensibility/snippets.html --> | |
<!-- Clone or save this code as js-arrow-function.sublime-snippet into Data/Packages/User. No need to restart Sublime. | |
(If you choose to Copy-Paste-SaveAs... with Sublime, be careful not to save as .xml. It's actually hard not to) --> | |
<!-- Use tabs in this file, not spaces --> | |
<snippet> | |
<content> |
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
<!-- Documentation: http://docs.sublimetext.info/en/latest/extensibility/snippets.html --> | |
<!-- Clone or save this code as js-switch.sublime-snippet into Data/Packages/User. No need to restart Sublime. | |
(If you Copy-Paste-SaveAs... with Sublime, be careful not to save as .xml. It's actually hard not to) --> | |
<!-- Use tabs in this file, not spaces --> | |
<snippet> | |
<content> | |
<![CDATA[switch (${1:expression}) { |
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
<!-- Documentation: http://docs.sublimetext.info/en/latest/extensibility/snippets.html --> | |
<!-- Clone or save this code as js-for-in.sublime-snippet into Data/Packages/User. No need to restart Sublime. | |
(If you choose to Copy-Paste-SaveAs... with Sublime, be careful not to save as .xml. It's actually hard not to) --> | |
<!-- Use tabs in this file, not spaces --> | |
<snippet> | |
<content> | |
<![CDATA[for (let i in ${1:}) { |
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
<!-- Documentation: http://docs.sublimetext.info/en/latest/extensibility/snippets.html --> | |
<!-- Clone or save this code as js-for-of.sublime-snippet into Data/Packages/User. No need to restart Sublime. | |
(If you choose to Copy-Paste-SaveAs... with Sublime, be careful not to save as .xml. It's actually hard not to) --> | |
<!-- Use tabs in this file, not spaces --> | |
<snippet> | |
<content> | |
<![CDATA[for (let ${1:i} of ${2:}) { |