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