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