C:
char c = '\u1384';
printf("%c\n", c); // Output: ᎄ
JavaScript:
const char = '\u1384';
console.log(char); // Output: ᎄ
Java:
char c = '\u1384';
System.out.println(c); // Output: ᎄ
JSON:
{"text": "\u1384"} // Value: ᎄ
Python:
char = '\u1384'
print(char) # Output: ᎄ
Perl:
my $char = "\x{1384}";
print $char; # Output: ᎄ
PHP:
$char = "\x{1384}";
echo $char; // Output: ᎄ
Ruby:
char = "\u{1384}"
puts char # Output: ᎄ
Rust:
let c = '\u{1384}';
println!("{}", c); // Output: ᎄ
Go:
char := '\u1384'
fmt.Printf("%c\n", char) // Output: ᎄ
CSS:
/* CSS content property */
.element::before {
content: "\001384"; /* 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%84
MD5:
f1a8dca8ac0bf12c5a83c848b6206540
SHA1:
36b6eb575418d270d27bfb2c4db16ae38f80d8a1
Base64:
4Y6E