C:
char c = '\u1564';
printf("%c\n", c); // Output: ᕤ
JavaScript:
const char = '\u1564';
console.log(char); // Output: ᕤ
Java:
char c = '\u1564';
System.out.println(c); // Output: ᕤ
JSON:
{"text": "\u1564"} // Value: ᕤ
Python:
char = '\u1564'
print(char) # Output: ᕤ
Perl:
my $char = "\x{1564}";
print $char; # Output: ᕤ
PHP:
$char = "\x{1564}";
echo $char; // Output: ᕤ
Ruby:
char = "\u{1564}"
puts char # Output: ᕤ
Rust:
let c = '\u{1564}';
println!("{}", c); // Output: ᕤ
Go:
char := '\u1564'
fmt.Printf("%c\n", char) // Output: ᕤ
CSS:
/* CSS content property */
.element::before {
content: "\001564"; /* 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%A4
MD5:
3b04164a96c500ccaca1640a44c3bd66
SHA1:
1c65ba00d32ffe70c54be409e4e952393284024b
Base64:
4ZWk