C:
char c = '\uD01F';
printf("%c\n", c); // Output: 퀟
JavaScript:
const char = '\uD01F';
console.log(char); // Output: 퀟
Java:
char c = '\uD01F';
System.out.println(c); // Output: 퀟
JSON:
{"text": "\uD01F"} // Value: 퀟
Python:
char = '\uD01F'
print(char) # Output: 퀟
Perl:
my $char = "\x{D01F}";
print $char; # Output: 퀟
PHP:
$char = "\x{D01F}";
echo $char; // Output: 퀟
Ruby:
char = "\u{D01F}"
puts char # Output: 퀟
Rust:
let c = '\u{D01F}';
println!("{}", c); // Output: 퀟
Go:
char := '\uD01F'
fmt.Printf("%c\n", char) // Output: 퀟
CSS:
/* CSS content property */
.element::before {
content: "\00D01F"; /* 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%9F
MD5:
800986756e560f57e26559fc31ae3caa
SHA1:
e6f43bbe1d358ec75d7dffbe8662cea859f87b42
Base64:
7YCf