C:
char c = '\uA56A';
printf("%c\n", c); // Output: ꕪ
JavaScript:
const char = '\uA56A';
console.log(char); // Output: ꕪ
Java:
char c = '\uA56A';
System.out.println(c); // Output: ꕪ
JSON:
{"text": "\uA56A"} // Value: ꕪ
Python:
char = '\uA56A'
print(char) # Output: ꕪ
Perl:
my $char = "\x{A56A}";
print $char; # Output: ꕪ
PHP:
$char = "\x{A56A}";
echo $char; // Output: ꕪ
Ruby:
char = "\u{A56A}"
puts char # Output: ꕪ
Rust:
let c = '\u{A56A}';
println!("{}", c); // Output: ꕪ
Go:
char := '\uA56A'
fmt.Printf("%c\n", char) // Output: ꕪ
CSS:
/* CSS content property */
.element::before {
content: "\00A56A"; /* 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%AA
MD5:
61a4045ba97e862b1b47bbcaf5fb058b
SHA1:
48d9150e1cf834e0700ded9694b9769f341f6868
Base64:
6pWq