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