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