C:
char c = '\u1392';
printf("%c\n", c); // Output: ᎒
JavaScript:
const char = '\u1392';
console.log(char); // Output: ᎒
Java:
char c = '\u1392';
System.out.println(c); // Output: ᎒
JSON:
{"text": "\u1392"} // Value: ᎒
Python:
char = '\u1392'
print(char) # Output: ᎒
Perl:
my $char = "\x{1392}";
print $char; # Output: ᎒
PHP:
$char = "\x{1392}";
echo $char; // Output: ᎒
Ruby:
char = "\u{1392}"
puts char # Output: ᎒
Rust:
let c = '\u{1392}';
println!("{}", c); // Output: ᎒
Go:
char := '\u1392'
fmt.Printf("%c\n", char) // Output: ᎒
CSS:
/* CSS content property */
.element::before {
content: "\001392"; /* 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%92
MD5:
a88f1e1790bbd3dfe317d55bba7a643f
SHA1:
21ec47458bec642a0ac1d0ee879ba5df432ba484
Base64:
4Y6S