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