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