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