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