C:
char c = '\uA305';
printf("%c\n", c); // Output: ꌅ
JavaScript:
const char = '\uA305';
console.log(char); // Output: ꌅ
Java:
char c = '\uA305';
System.out.println(c); // Output: ꌅ
JSON:
{"text": "\uA305"} // Value: ꌅ
Python:
char = '\uA305'
print(char) # Output: ꌅ
Perl:
my $char = "\x{A305}";
print $char; # Output: ꌅ
PHP:
$char = "\x{A305}";
echo $char; // Output: ꌅ
Ruby:
char = "\u{A305}"
puts char # Output: ꌅ
Rust:
let c = '\u{A305}';
println!("{}", c); // Output: ꌅ
Go:
char := '\uA305'
fmt.Printf("%c\n", char) // Output: ꌅ
CSS:
/* CSS content property */
.element::before {
content: "\00A305"; /* 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%8C%85
MD5:
1896a70b9ef2e3993a557049bc1d4193
SHA1:
435f79e8b5673f90bb370ba5c2614871c6af7c47
Base64:
6oyF