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