C:
char c = '\u1548';
printf("%c\n", c); // Output: ᕈ
JavaScript:
const char = '\u1548';
console.log(char); // Output: ᕈ
Java:
char c = '\u1548';
System.out.println(c); // Output: ᕈ
JSON:
{"text": "\u1548"} // Value: ᕈ
Python:
char = '\u1548'
print(char) # Output: ᕈ
Perl:
my $char = "\x{1548}";
print $char; # Output: ᕈ
PHP:
$char = "\x{1548}";
echo $char; // Output: ᕈ
Ruby:
char = "\u{1548}"
puts char # Output: ᕈ
Rust:
let c = '\u{1548}';
println!("{}", c); // Output: ᕈ
Go:
char := '\u1548'
fmt.Printf("%c\n", char) // Output: ᕈ
CSS:
/* CSS content property */
.element::before {
content: "\001548"; /* 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%88
MD5:
534334d09f05cb3e9e64a24d5b5f1dba
SHA1:
6dd9953272042649bfcda51eeb6700490b439ac9
Base64:
4ZWI