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