C:
char c = '\uA4D7';
printf("%c\n", c); // Output: ꓗ
JavaScript:
const char = '\uA4D7';
console.log(char); // Output: ꓗ
Java:
char c = '\uA4D7';
System.out.println(c); // Output: ꓗ
JSON:
{"text": "\uA4D7"} // Value: ꓗ
Python:
char = '\uA4D7'
print(char) # Output: ꓗ
Perl:
my $char = "\x{A4D7}";
print $char; # Output: ꓗ
PHP:
$char = "\x{A4D7}";
echo $char; // Output: ꓗ
Ruby:
char = "\u{A4D7}"
puts char # Output: ꓗ
Rust:
let c = '\u{A4D7}';
println!("{}", c); // Output: ꓗ
Go:
char := '\uA4D7'
fmt.Printf("%c\n", char) // Output: ꓗ
CSS:
/* CSS content property */
.element::before {
content: "\00A4D7"; /* 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%93%97
MD5:
24067dd65dbf52e401585f52167bc387
SHA1:
405d352664d2fd86076785bf8b5b9d31fa21d5ac
Base64:
6pOX