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