C:
char c = '\u1568';
printf("%c\n", c); // Output: ᕨ
JavaScript:
const char = '\u1568';
console.log(char); // Output: ᕨ
Java:
char c = '\u1568';
System.out.println(c); // Output: ᕨ
JSON:
{"text": "\u1568"} // Value: ᕨ
Python:
char = '\u1568'
print(char) # Output: ᕨ
Perl:
my $char = "\x{1568}";
print $char; # Output: ᕨ
PHP:
$char = "\x{1568}";
echo $char; // Output: ᕨ
Ruby:
char = "\u{1568}"
puts char # Output: ᕨ
Rust:
let c = '\u{1568}';
println!("{}", c); // Output: ᕨ
Go:
char := '\u1568'
fmt.Printf("%c\n", char) // Output: ᕨ
CSS:
/* CSS content property */
.element::before {
content: "\001568"; /* 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%A8
MD5:
94fd80682c2ce6daef690fd9b4c0c5f5
SHA1:
3180a24c928e4be5357de2da48edd692ba1895ff
Base64:
4ZWo