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