C:
char c = '\u1448';
printf("%c\n", c); // Output: ᑈ
JavaScript:
const char = '\u1448';
console.log(char); // Output: ᑈ
Java:
char c = '\u1448';
System.out.println(c); // Output: ᑈ
JSON:
{"text": "\u1448"} // Value: ᑈ
Python:
char = '\u1448'
print(char) # Output: ᑈ
Perl:
my $char = "\x{1448}";
print $char; # Output: ᑈ
PHP:
$char = "\x{1448}";
echo $char; // Output: ᑈ
Ruby:
char = "\u{1448}"
puts char # Output: ᑈ
Rust:
let c = '\u{1448}';
println!("{}", c); // Output: ᑈ
Go:
char := '\u1448'
fmt.Printf("%c\n", char) // Output: ᑈ
CSS:
/* CSS content property */
.element::before {
content: "\001448"; /* 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%88
MD5:
9518cc67136542583fbbc45a881f67a6
SHA1:
031e5077ff860e8ee5aa0d87a765fc085976b6b0
Base64:
4ZGI