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