C:
char c = '\u1566';
printf("%c\n", c); // Output: ᕦ
JavaScript:
const char = '\u1566';
console.log(char); // Output: ᕦ
Java:
char c = '\u1566';
System.out.println(c); // Output: ᕦ
JSON:
{"text": "\u1566"} // Value: ᕦ
Python:
char = '\u1566'
print(char) # Output: ᕦ
Perl:
my $char = "\x{1566}";
print $char; # Output: ᕦ
PHP:
$char = "\x{1566}";
echo $char; // Output: ᕦ
Ruby:
char = "\u{1566}"
puts char # Output: ᕦ
Rust:
let c = '\u{1566}';
println!("{}", c); // Output: ᕦ
Go:
char := '\u1566'
fmt.Printf("%c\n", char) // Output: ᕦ
CSS:
/* CSS content property */
.element::before {
content: "\001566"; /* 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%95%A6
MD5:
e5def70ca63b60008ebd6e2caf69f39c
SHA1:
f4d864daf9170183383406854eee2199ee0a346c
Base64:
4ZWm