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