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