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