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