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