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