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