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