C:
char c = '\u1A6A';
printf("%c\n", c); // Output: ᩪ
JavaScript:
const char = '\u1A6A';
console.log(char); // Output: ᩪ
Java:
char c = '\u1A6A';
System.out.println(c); // Output: ᩪ
JSON:
{"text": "\u1A6A"} // Value: ᩪ
Python:
char = '\u1A6A'
print(char) # Output: ᩪ
Perl:
my $char = "\x{1A6A}";
print $char; # Output: ᩪ
PHP:
$char = "\x{1A6A}";
echo $char; // Output: ᩪ
Ruby:
char = "\u{1A6A}"
puts char # Output: ᩪ
Rust:
let c = '\u{1A6A}';
println!("{}", c); // Output: ᩪ
Go:
char := '\u1A6A'
fmt.Printf("%c\n", char) // Output: ᩪ
CSS:
/* CSS content property */
.element::before {
content: "\001A6A"; /* 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=%E1%A9%AA
MD5:
0469f1d6e1e2e81eaf6974fd45bac556
SHA1:
c0f5b0b2bac00806ada39e41927e0930a014acfc
Base64:
4amq