C:
char c = '\uA950';
printf("%c\n", c); // Output: ꥐ
JavaScript:
const char = '\uA950';
console.log(char); // Output: ꥐ
Java:
char c = '\uA950';
System.out.println(c); // Output: ꥐ
JSON:
{"text": "\uA950"} // Value: ꥐ
Python:
char = '\uA950'
print(char) # Output: ꥐ
Perl:
my $char = "\x{A950}";
print $char; # Output: ꥐ
PHP:
$char = "\x{A950}";
echo $char; // Output: ꥐ
Ruby:
char = "\u{A950}"
puts char # Output: ꥐ
Rust:
let c = '\u{A950}';
println!("{}", c); // Output: ꥐ
Go:
char := '\uA950'
fmt.Printf("%c\n", char) // Output: ꥐ
CSS:
/* CSS content property */
.element::before {
content: "\00A950"; /* 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%90
MD5:
60435582b49a0428166e0894a43f77b7
SHA1:
51b13c2f162d2aea724dae76eb4f5857a34e916e
Base64:
6qWQ