C:
char c = '\u1399';
printf("%c\n", c); // Output: ᎙
JavaScript:
const char = '\u1399';
console.log(char); // Output: ᎙
Java:
char c = '\u1399';
System.out.println(c); // Output: ᎙
JSON:
{"text": "\u1399"} // Value: ᎙
Python:
char = '\u1399'
print(char) # Output: ᎙
Perl:
my $char = "\x{1399}";
print $char; # Output: ᎙
PHP:
$char = "\x{1399}";
echo $char; // Output: ᎙
Ruby:
char = "\u{1399}"
puts char # Output: ᎙
Rust:
let c = '\u{1399}';
println!("{}", c); // Output: ᎙
Go:
char := '\u1399'
fmt.Printf("%c\n", char) // Output: ᎙
CSS:
/* CSS content property */
.element::before {
content: "\001399"; /* 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%8E%99
MD5:
9da21a58422c88d979fee9d19c313121
SHA1:
b10a1f495a909e62b58d0d960e8c47bf0a17cbf8
Base64:
4Y6Z