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