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