C:
char c = '\u1A64';
printf("%c\n", c); // Output: ᩤ
JavaScript:
const char = '\u1A64';
console.log(char); // Output: ᩤ
Java:
char c = '\u1A64';
System.out.println(c); // Output: ᩤ
JSON:
{"text": "\u1A64"} // Value: ᩤ
Python:
char = '\u1A64'
print(char) # Output: ᩤ
Perl:
my $char = "\x{1A64}";
print $char; # Output: ᩤ
PHP:
$char = "\x{1A64}";
echo $char; // Output: ᩤ
Ruby:
char = "\u{1A64}"
puts char # Output: ᩤ
Rust:
let c = '\u{1A64}';
println!("{}", c); // Output: ᩤ
Go:
char := '\u1A64'
fmt.Printf("%c\n", char) // Output: ᩤ
CSS:
/* CSS content property */
.element::before {
content: "\001A64"; /* 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%A4
MD5:
c7dc5e4f718ac37c51238a239036a27d
SHA1:
46d686f470691290844656f374865665f0d7dd2a
Base64:
4amk