C:
char c = '\u110B';
printf("%c\n", c); // Output: ᄋ
JavaScript:
const char = '\u110B';
console.log(char); // Output: ᄋ
Java:
char c = '\u110B';
System.out.println(c); // Output: ᄋ
JSON:
{"text": "\u110B"} // Value: ᄋ
Python:
char = '\u110B'
print(char) # Output: ᄋ
Perl:
my $char = "\x{110B}";
print $char; # Output: ᄋ
PHP:
$char = "\x{110B}";
echo $char; // Output: ᄋ
Ruby:
char = "\u{110B}"
puts char # Output: ᄋ
Rust:
let c = '\u{110B}';
println!("{}", c); // Output: ᄋ
Go:
char := '\u110B'
fmt.Printf("%c\n", char) // Output: ᄋ
CSS:
/* CSS content property */
.element::before {
content: "\00110B"; /* 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%8B
MD5:
05aab5c59c61ce6971deef240a084d8e
SHA1:
d2e877bc6c53a36f8f352a09e674ea385f13261a
Base64:
4YSL