C:
char c = '\u1459';
printf("%c\n", c); // Output: ᑙ
JavaScript:
const char = '\u1459';
console.log(char); // Output: ᑙ
Java:
char c = '\u1459';
System.out.println(c); // Output: ᑙ
JSON:
{"text": "\u1459"} // Value: ᑙ
Python:
char = '\u1459'
print(char) # Output: ᑙ
Perl:
my $char = "\x{1459}";
print $char; # Output: ᑙ
PHP:
$char = "\x{1459}";
echo $char; // Output: ᑙ
Ruby:
char = "\u{1459}"
puts char # Output: ᑙ
Rust:
let c = '\u{1459}';
println!("{}", c); // Output: ᑙ
Go:
char := '\u1459'
fmt.Printf("%c\n", char) // Output: ᑙ
CSS:
/* CSS content property */
.element::before {
content: "\001459"; /* 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%99
MD5:
151746f1678e8976de4e0bcb130bddd1
SHA1:
3d81161e0bd8020c440c02e97b3e6e7ba0e78470
Base64:
4ZGZ