C:
char c = '\u1108';
printf("%c\n", c); // Output: ᄈ
JavaScript:
const char = '\u1108';
console.log(char); // Output: ᄈ
Java:
char c = '\u1108';
System.out.println(c); // Output: ᄈ
JSON:
{"text": "\u1108"} // Value: ᄈ
Python:
char = '\u1108'
print(char) # Output: ᄈ
Perl:
my $char = "\x{1108}";
print $char; # Output: ᄈ
PHP:
$char = "\x{1108}";
echo $char; // Output: ᄈ
Ruby:
char = "\u{1108}"
puts char # Output: ᄈ
Rust:
let c = '\u{1108}';
println!("{}", c); // Output: ᄈ
Go:
char := '\u1108'
fmt.Printf("%c\n", char) // Output: ᄈ
CSS:
/* CSS content property */
.element::before {
content: "\001108"; /* Display: ᄈ */
}
HTML Decimal:
<p>HTML decimal: ᄈ</p> <!-- Display: ᄈ -->
HTML Hexadecimal:
<p>HTML hex: ᄈ</p> <!-- Display: ᄈ -->
URL Encoding:
// ᄈ URL encoding
https://unicodefinder.com/search.php?query=%E1%84%88
MD5:
8158fd1ae87d7a00872da9fca8ad3fc6
SHA1:
37e5a5c9d485e7200b7941e6ce3677e9a4390b21
Base64:
4YSI