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