C:
char c = '\u144A';
printf("%c\n", c); // Output: ᑊ
JavaScript:
const char = '\u144A';
console.log(char); // Output: ᑊ
Java:
char c = '\u144A';
System.out.println(c); // Output: ᑊ
JSON:
{"text": "\u144A"} // Value: ᑊ
Python:
char = '\u144A'
print(char) # Output: ᑊ
Perl:
my $char = "\x{144A}";
print $char; # Output: ᑊ
PHP:
$char = "\x{144A}";
echo $char; // Output: ᑊ
Ruby:
char = "\u{144A}"
puts char # Output: ᑊ
Rust:
let c = '\u{144A}';
println!("{}", c); // Output: ᑊ
Go:
char := '\u144A'
fmt.Printf("%c\n", char) // Output: ᑊ
CSS:
/* CSS content property */
.element::before {
content: "\00144A"; /* 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%8A
MD5:
373a4e8bd87a0646f4cb717e66953ed5
SHA1:
77fb0bda21634e087d48389235ab103a1418db12
Base64:
4ZGK