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