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