C:
char c = '\uD00B';
printf("%c\n", c); // Output: 퀋
JavaScript:
const char = '\uD00B';
console.log(char); // Output: 퀋
Java:
char c = '\uD00B';
System.out.println(c); // Output: 퀋
JSON:
{"text": "\uD00B"} // Value: 퀋
Python:
char = '\uD00B'
print(char) # Output: 퀋
Perl:
my $char = "\x{D00B}";
print $char; # Output: 퀋
PHP:
$char = "\x{D00B}";
echo $char; // Output: 퀋
Ruby:
char = "\u{D00B}"
puts char # Output: 퀋
Rust:
let c = '\u{D00B}';
println!("{}", c); // Output: 퀋
Go:
char := '\uD00B'
fmt.Printf("%c\n", char) // Output: 퀋
CSS:
/* CSS content property */
.element::before {
content: "\00D00B"; /* 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%8B
MD5:
d4660500ce7a05ec8910d48d301460c7
SHA1:
28549cd5db09958d65c250495462e7d084d04ffc
Base64:
7YCL