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