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