C:
char c = '\u1396';
printf("%c\n", c); // Output: ᎖
JavaScript:
const char = '\u1396';
console.log(char); // Output: ᎖
Java:
char c = '\u1396';
System.out.println(c); // Output: ᎖
JSON:
{"text": "\u1396"} // Value: ᎖
Python:
char = '\u1396'
print(char) # Output: ᎖
Perl:
my $char = "\x{1396}";
print $char; # Output: ᎖
PHP:
$char = "\x{1396}";
echo $char; // Output: ᎖
Ruby:
char = "\u{1396}"
puts char # Output: ᎖
Rust:
let c = '\u{1396}';
println!("{}", c); // Output: ᎖
Go:
char := '\u1396'
fmt.Printf("%c\n", char) // Output: ᎖
CSS:
/* CSS content property */
.element::before {
content: "\001396"; /* 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%96
MD5:
b1646e8fb685c3b31a3eba61f015cb13
SHA1:
ac209469d9ae2ef6f7437e06d58df52680194b9f
Base64:
4Y6W