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