C:
char c = '\uA660';
printf("%c\n", c); // Output: Ꙡ
JavaScript:
const char = '\uA660';
console.log(char); // Output: Ꙡ
Java:
char c = '\uA660';
System.out.println(c); // Output: Ꙡ
JSON:
{"text": "\uA660"} // Value: Ꙡ
Python:
char = '\uA660'
print(char) # Output: Ꙡ
Perl:
my $char = "\x{A660}";
print $char; # Output: Ꙡ
PHP:
$char = "\x{A660}";
echo $char; // Output: Ꙡ
Ruby:
char = "\u{A660}"
puts char # Output: Ꙡ
Rust:
let c = '\u{A660}';
println!("{}", c); // Output: Ꙡ
Go:
char := '\uA660'
fmt.Printf("%c\n", char) // Output: Ꙡ
CSS:
/* CSS content property */
.element::before {
content: "\00A660"; /* 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%99%A0
MD5:
2886511727e5dcd7909e3fafef4eea33
SHA1:
17e948f5c12538566fcb252d98429dbe817f5b41
Base64:
6pmg