C:
char c = '\u1104';
printf("%c\n", c); // Output: ᄄ
JavaScript:
const char = '\u1104';
console.log(char); // Output: ᄄ
Java:
char c = '\u1104';
System.out.println(c); // Output: ᄄ
JSON:
{"text": "\u1104"} // Value: ᄄ
Python:
char = '\u1104'
print(char) # Output: ᄄ
Perl:
my $char = "\x{1104}";
print $char; # Output: ᄄ
PHP:
$char = "\x{1104}";
echo $char; // Output: ᄄ
Ruby:
char = "\u{1104}"
puts char # Output: ᄄ
Rust:
let c = '\u{1104}';
println!("{}", c); // Output: ᄄ
Go:
char := '\u1104'
fmt.Printf("%c\n", char) // Output: ᄄ
CSS:
/* CSS content property */
.element::before {
content: "\001104"; /* 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%84
MD5:
9ecfc31506ea071ebbefab79afebf2b5
SHA1:
25ea863f1a5116b65ccde624e16eefb51fd8e3b2
Base64:
4YSE