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