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