C:
char c = '\uA06E';
printf("%c\n", c); // Output: ꁮ
JavaScript:
const char = '\uA06E';
console.log(char); // Output: ꁮ
Java:
char c = '\uA06E';
System.out.println(c); // Output: ꁮ
JSON:
{"text": "\uA06E"} // Value: ꁮ
Python:
char = '\uA06E'
print(char) # Output: ꁮ
Perl:
my $char = "\x{A06E}";
print $char; # Output: ꁮ
PHP:
$char = "\x{A06E}";
echo $char; // Output: ꁮ
Ruby:
char = "\u{A06E}"
puts char # Output: ꁮ
Rust:
let c = '\u{A06E}';
println!("{}", c); // Output: ꁮ
Go:
char := '\uA06E'
fmt.Printf("%c\n", char) // Output: ꁮ
CSS:
/* CSS content property */
.element::before {
content: "\00A06E"; /* 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=%EA%81%AE
MD5:
939e9fd44f4ec431eb07a7e4ca3f1658
SHA1:
e2274d669d62ebeaf37dfae012468fea7a9fc843
Base64:
6oGu