C:
char c = '\u1464';
printf("%c\n", c); // Output: ᑤ
JavaScript:
const char = '\u1464';
console.log(char); // Output: ᑤ
Java:
char c = '\u1464';
System.out.println(c); // Output: ᑤ
JSON:
{"text": "\u1464"} // Value: ᑤ
Python:
char = '\u1464'
print(char) # Output: ᑤ
Perl:
my $char = "\x{1464}";
print $char; # Output: ᑤ
PHP:
$char = "\x{1464}";
echo $char; // Output: ᑤ
Ruby:
char = "\u{1464}"
puts char # Output: ᑤ
Rust:
let c = '\u{1464}';
println!("{}", c); // Output: ᑤ
Go:
char := '\u1464'
fmt.Printf("%c\n", char) // Output: ᑤ
CSS:
/* CSS content property */
.element::before {
content: "\001464"; /* 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%91%A4
MD5:
c4aa90a883ddd1670fcb0da84c800cb9
SHA1:
8156be440d22c26c2771148cc5783c80fc9c565b
Base64:
4ZGk