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