C:
char c = '\uC488';
printf("%c\n", c); // Output: 쒈
JavaScript:
const char = '\uC488';
console.log(char); // Output: 쒈
Java:
char c = '\uC488';
System.out.println(c); // Output: 쒈
JSON:
{"text": "\uC488"} // Value: 쒈
Python:
char = '\uC488'
print(char) # Output: 쒈
Perl:
my $char = "\x{C488}";
print $char; # Output: 쒈
PHP:
$char = "\x{C488}";
echo $char; // Output: 쒈
Ruby:
char = "\u{C488}"
puts char # Output: 쒈
Rust:
let c = '\u{C488}';
println!("{}", c); // Output: 쒈
Go:
char := '\uC488'
fmt.Printf("%c\n", char) // Output: 쒈
CSS:
/* CSS content property */
.element::before {
content: "\00C488"; /* 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%92%88
MD5:
85d3ea19bcdd05e5c8a8ddf3d736780f
SHA1:
3962217787d7b5d8d9affce25c00d728cf8a489c
Base64:
7JKI