C:
char c = '\uA3D7';
printf("%c\n", c); // Output: ꏗ
JavaScript:
const char = '\uA3D7';
console.log(char); // Output: ꏗ
Java:
char c = '\uA3D7';
System.out.println(c); // Output: ꏗ
JSON:
{"text": "\uA3D7"} // Value: ꏗ
Python:
char = '\uA3D7'
print(char) # Output: ꏗ
Perl:
my $char = "\x{A3D7}";
print $char; # Output: ꏗ
PHP:
$char = "\x{A3D7}";
echo $char; // Output: ꏗ
Ruby:
char = "\u{A3D7}"
puts char # Output: ꏗ
Rust:
let c = '\u{A3D7}';
println!("{}", c); // Output: ꏗ
Go:
char := '\uA3D7'
fmt.Printf("%c\n", char) // Output: ꏗ
CSS:
/* CSS content property */
.element::before {
content: "\00A3D7"; /* 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%8F%97
MD5:
f280b8eaa55f56708180aae9f18210de
SHA1:
b656eb58f05bf169e9c46a0e16ebf61d7664082f
Base64:
6o+X