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