C:
char c = '\uC6E1';
printf("%c\n", c); // Output: 웡
JavaScript:
const char = '\uC6E1';
console.log(char); // Output: 웡
Java:
char c = '\uC6E1';
System.out.println(c); // Output: 웡
JSON:
{"text": "\uC6E1"} // Value: 웡
Python:
char = '\uC6E1'
print(char) # Output: 웡
Perl:
my $char = "\x{C6E1}";
print $char; # Output: 웡
PHP:
$char = "\x{C6E1}";
echo $char; // Output: 웡
Ruby:
char = "\u{C6E1}"
puts char # Output: 웡
Rust:
let c = '\u{C6E1}';
println!("{}", c); // Output: 웡
Go:
char := '\uC6E1'
fmt.Printf("%c\n", char) // Output: 웡
CSS:
/* CSS content property */
.element::before {
content: "\00C6E1"; /* 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%9B%A1
MD5:
21e142624306afe67e125594e06ba7a0
SHA1:
6c2b229f8ffed397793de6721a819ecd588762fe
Base64:
7Juh