restructure

This commit is contained in:
JMARyA 2024-01-17 09:00:45 +01:00
parent ef7661245b
commit 598a10bc28
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
182 changed files with 342 additions and 336 deletions

View file

@ -28,7 +28,7 @@ Unicode addresses compatibility issues, offering compatibility equivalence for c
Example: The code point for the letter 'A' is `U+0041`.
### 2. **Escape Sequences:**
In programming languages and markup languages, Unicode characters can be represented using escape sequences. For example, `\uXXXX` in JavaScript or `\u{XXXX}` in languages like [Rust](../programming/languages/Rust.md) and JavaScript ES6.
In programming languages and markup languages, Unicode characters can be represented using escape sequences. For example, `\uXXXX` in JavaScript or `\u{XXXX}` in languages like [Rust](../dev/programming/languages/Rust.md) and JavaScript ES6.
Example: The escape sequence for the heart symbol (❤) is `\u2764`.