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