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