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