C:
char c = '\uA94D';
printf("%c\n", c); // Output: ꥍ
JavaScript:
const char = '\uA94D';
console.log(char); // Output: ꥍ
Java:
char c = '\uA94D';
System.out.println(c); // Output: ꥍ
JSON:
{"text": "\uA94D"} // Value: ꥍ
Python:
char = '\uA94D'
print(char) # Output: ꥍ
Perl:
my $char = "\x{A94D}";
print $char; # Output: ꥍ
PHP:
$char = "\x{A94D}";
echo $char; // Output: ꥍ
Ruby:
char = "\u{A94D}"
puts char # Output: ꥍ
Rust:
let c = '\u{A94D}';
println!("{}", c); // Output: ꥍ
Go:
char := '\uA94D'
fmt.Printf("%c\n", char) // Output: ꥍ
CSS:
/* CSS content property */
.element::before {
content: "\00A94D"; /* 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%A5%8D
MD5:
186d8e07da4dda893d9d8c9551c9b56e
SHA1:
1bed18e5c7eb1f362bcd3816b30a2319156f38a5
Base64:
6qWN