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