C:
char c = '\uC387';
printf("%c\n", c); // Output: 쎇
JavaScript:
const char = '\uC387';
console.log(char); // Output: 쎇
Java:
char c = '\uC387';
System.out.println(c); // Output: 쎇
JSON:
{"text": "\uC387"} // Value: 쎇
Python:
char = '\uC387'
print(char) # Output: 쎇
Perl:
my $char = "\x{C387}";
print $char; # Output: 쎇
PHP:
$char = "\x{C387}";
echo $char; // Output: 쎇
Ruby:
char = "\u{C387}"
puts char # Output: 쎇
Rust:
let c = '\u{C387}';
println!("{}", c); // Output: 쎇
Go:
char := '\uC387'
fmt.Printf("%c\n", char) // Output: 쎇
CSS:
/* CSS content property */
.element::before {
content: "\00C387"; /* 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%8E%87
MD5:
30eb64b5e6b529e472e515ec3e6a0ee0
SHA1:
3b299f6baab1f6f020444fe1c1318fb840638f44
Base64:
7I6H