C:
char c = '\u1B57';
printf("%c\n", c); // Output: ᭗
JavaScript:
const char = '\u1B57';
console.log(char); // Output: ᭗
Java:
char c = '\u1B57';
System.out.println(c); // Output: ᭗
JSON:
{"text": "\u1B57"} // Value: ᭗
Python:
char = '\u1B57'
print(char) # Output: ᭗
Perl:
my $char = "\x{1B57}";
print $char; # Output: ᭗
PHP:
$char = "\x{1B57}";
echo $char; // Output: ᭗
Ruby:
char = "\u{1B57}"
puts char # Output: ᭗
Rust:
let c = '\u{1B57}';
println!("{}", c); // Output: ᭗
Go:
char := '\u1B57'
fmt.Printf("%c\n", char) // Output: ᭗
CSS:
/* CSS content property */
.element::before {
content: "\001B57"; /* 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%AD%97
MD5:
b888216afaad3f085004f3fc85cb9e3c
SHA1:
ddf84b87210d179fdd07fc41372a63ffffc46ebf
Base64:
4a2X