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