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