C:
char c = '\uC5EC';
printf("%c\n", c); // Output: 여
JavaScript:
const char = '\uC5EC';
console.log(char); // Output: 여
Java:
char c = '\uC5EC';
System.out.println(c); // Output: 여
JSON:
{"text": "\uC5EC"} // Value: 여
Python:
char = '\uC5EC'
print(char) # Output: 여
Perl:
my $char = "\x{C5EC}";
print $char; # Output: 여
PHP:
$char = "\x{C5EC}";
echo $char; // Output: 여
Ruby:
char = "\u{C5EC}"
puts char # Output: 여
Rust:
let c = '\u{C5EC}';
println!("{}", c); // Output: 여
Go:
char := '\uC5EC'
fmt.Printf("%c\n", char) // Output: 여
CSS:
/* CSS content property */
.element::before {
content: "\00C5EC"; /* 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%97%AC
MD5:
96fdb80a5b2c37221bb24d71212b4ad9
SHA1:
445287d4d33419dedbf824011ab5c91d15c81c14
Base64:
7Jes