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