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