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