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