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