C:
char c = '\uD023';
printf("%c\n", c); // Output: 퀣
JavaScript:
const char = '\uD023';
console.log(char); // Output: 퀣
Java:
char c = '\uD023';
System.out.println(c); // Output: 퀣
JSON:
{"text": "\uD023"} // Value: 퀣
Python:
char = '\uD023'
print(char) # Output: 퀣
Perl:
my $char = "\x{D023}";
print $char; # Output: 퀣
PHP:
$char = "\x{D023}";
echo $char; // Output: 퀣
Ruby:
char = "\u{D023}"
puts char # Output: 퀣
Rust:
let c = '\u{D023}';
println!("{}", c); // Output: 퀣
Go:
char := '\uD023'
fmt.Printf("%c\n", char) // Output: 퀣
CSS:
/* CSS content property */
.element::before {
content: "\00D023"; /* 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%A3
MD5:
4e3b35336c836297abf79b309d25dff0
SHA1:
064ad6d36d514f7dd45b2e2462a080b53721413d
Base64:
7YCj