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