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