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