C:
char c = '\u1449';
printf("%c\n", c); // Output: ᑉ
JavaScript:
const char = '\u1449';
console.log(char); // Output: ᑉ
Java:
char c = '\u1449';
System.out.println(c); // Output: ᑉ
JSON:
{"text": "\u1449"} // Value: ᑉ
Python:
char = '\u1449'
print(char) # Output: ᑉ
Perl:
my $char = "\x{1449}";
print $char; # Output: ᑉ
PHP:
$char = "\x{1449}";
echo $char; // Output: ᑉ
Ruby:
char = "\u{1449}"
puts char # Output: ᑉ
Rust:
let c = '\u{1449}';
println!("{}", c); // Output: ᑉ
Go:
char := '\u1449'
fmt.Printf("%c\n", char) // Output: ᑉ
CSS:
/* CSS content property */
.element::before {
content: "\001449"; /* 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%89
MD5:
b6e60ecdedb185c52282f0e6c6a081bb
SHA1:
bcecbf28c773ff568d593a870c5478854a15eea1
Base64:
4ZGJ