C:
char c = '\uA11B';
printf("%c\n", c); // Output: ꄛ
JavaScript:
const char = '\uA11B';
console.log(char); // Output: ꄛ
Java:
char c = '\uA11B';
System.out.println(c); // Output: ꄛ
JSON:
{"text": "\uA11B"} // Value: ꄛ
Python:
char = '\uA11B'
print(char) # Output: ꄛ
Perl:
my $char = "\x{A11B}";
print $char; # Output: ꄛ
PHP:
$char = "\x{A11B}";
echo $char; // Output: ꄛ
Ruby:
char = "\u{A11B}"
puts char # Output: ꄛ
Rust:
let c = '\u{A11B}';
println!("{}", c); // Output: ꄛ
Go:
char := '\uA11B'
fmt.Printf("%c\n", char) // Output: ꄛ
CSS:
/* CSS content property */
.element::before {
content: "\00A11B"; /* 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=%EA%84%9B
MD5:
32a3bbf7bf7d776f66ff7eb68ecb32d6
SHA1:
23526a06e06ecb377aab0aac8f61fd41ee7c2856
Base64:
6oSb