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