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