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