C:
char c = '\uD7E1';
printf("%c\n", c); // Output: ퟡ
JavaScript:
const char = '\uD7E1';
console.log(char); // Output: ퟡ
Java:
char c = '\uD7E1';
System.out.println(c); // Output: ퟡ
JSON:
{"text": "\uD7E1"} // Value: ퟡ
Python:
char = '\uD7E1'
print(char) # Output: ퟡ
Perl:
my $char = "\x{D7E1}";
print $char; # Output: ퟡ
PHP:
$char = "\x{D7E1}";
echo $char; // Output: ퟡ
Ruby:
char = "\u{D7E1}"
puts char # Output: ퟡ
Rust:
let c = '\u{D7E1}';
println!("{}", c); // Output: ퟡ
Go:
char := '\uD7E1'
fmt.Printf("%c\n", char) // Output: ퟡ
CSS:
/* CSS content property */
.element::before {
content: "\00D7E1"; /* 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=%ED%9F%A1
MD5:
a7a7f482164d0bd46d76714d191480a4
SHA1:
b1c367a8932351b360e5fc572c9a4256bb5a758f
Base64:
7Z+h