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