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