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