C:
char c = '\uA06C';
printf("%c\n", c); // Output: ꁬ
JavaScript:
const char = '\uA06C';
console.log(char); // Output: ꁬ
Java:
char c = '\uA06C';
System.out.println(c); // Output: ꁬ
JSON:
{"text": "\uA06C"} // Value: ꁬ
Python:
char = '\uA06C'
print(char) # Output: ꁬ
Perl:
my $char = "\x{A06C}";
print $char; # Output: ꁬ
PHP:
$char = "\x{A06C}";
echo $char; // Output: ꁬ
Ruby:
char = "\u{A06C}"
puts char # Output: ꁬ
Rust:
let c = '\u{A06C}';
println!("{}", c); // Output: ꁬ
Go:
char := '\uA06C'
fmt.Printf("%c\n", char) // Output: ꁬ
CSS:
/* CSS content property */
.element::before {
content: "\00A06C"; /* 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%AC
MD5:
ff3ac305b91c7ed0e4744a7fe25f72ca
SHA1:
65ecaf426a8da86c314c09ed85af6882864292fa
Base64:
6oGs