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