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