C:
char c = '\uD02F';
printf("%c\n", c); // Output: 퀯
JavaScript:
const char = '\uD02F';
console.log(char); // Output: 퀯
Java:
char c = '\uD02F';
System.out.println(c); // Output: 퀯
JSON:
{"text": "\uD02F"} // Value: 퀯
Python:
char = '\uD02F'
print(char) # Output: 퀯
Perl:
my $char = "\x{D02F}";
print $char; # Output: 퀯
PHP:
$char = "\x{D02F}";
echo $char; // Output: 퀯
Ruby:
char = "\u{D02F}"
puts char # Output: 퀯
Rust:
let c = '\u{D02F}';
println!("{}", c); // Output: 퀯
Go:
char := '\uD02F'
fmt.Printf("%c\n", char) // Output: 퀯
CSS:
/* CSS content property */
.element::before {
content: "\00D02F"; /* 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%80%AF
MD5:
a34f3f0e3e3ec0560398aee1d13cef49
SHA1:
e18d856692547c5c381c5062460717fd37b2d018
Base64:
7YCv