C:
char c = '\u1445';
printf("%c\n", c); // Output: ᑅ
JavaScript:
const char = '\u1445';
console.log(char); // Output: ᑅ
Java:
char c = '\u1445';
System.out.println(c); // Output: ᑅ
JSON:
{"text": "\u1445"} // Value: ᑅ
Python:
char = '\u1445'
print(char) # Output: ᑅ
Perl:
my $char = "\x{1445}";
print $char; # Output: ᑅ
PHP:
$char = "\x{1445}";
echo $char; // Output: ᑅ
Ruby:
char = "\u{1445}"
puts char # Output: ᑅ
Rust:
let c = '\u{1445}';
println!("{}", c); // Output: ᑅ
Go:
char := '\u1445'
fmt.Printf("%c\n", char) // Output: ᑅ
CSS:
/* CSS content property */
.element::before {
content: "\001445"; /* 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%85
MD5:
6ff5cdc0fbfa65f7862bc3edf4a985f6
SHA1:
1a324359f264c18c16d39e16da7d5c2085984b7b
Base64:
4ZGF