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