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