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