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