C:
char c = '\u1440';
printf("%c\n", c); // Output: ᑀ
JavaScript:
const char = '\u1440';
console.log(char); // Output: ᑀ
Java:
char c = '\u1440';
System.out.println(c); // Output: ᑀ
JSON:
{"text": "\u1440"} // Value: ᑀ
Python:
char = '\u1440'
print(char) # Output: ᑀ
Perl:
my $char = "\x{1440}";
print $char; # Output: ᑀ
PHP:
$char = "\x{1440}";
echo $char; // Output: ᑀ
Ruby:
char = "\u{1440}"
puts char # Output: ᑀ
Rust:
let c = '\u{1440}';
println!("{}", c); // Output: ᑀ
Go:
char := '\u1440'
fmt.Printf("%c\n", char) // Output: ᑀ
CSS:
/* CSS content property */
.element::before {
content: "\001440"; /* 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%80
MD5:
f840db9bd360e44297512d50395550bd
SHA1:
2c3e1912cf614f139ccf2396762239643fd7f35f
Base64:
4ZGA