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