C:
char c = '\uCB00';
printf("%c\n", c); // Output: 쬀
JavaScript:
const char = '\uCB00';
console.log(char); // Output: 쬀
Java:
char c = '\uCB00';
System.out.println(c); // Output: 쬀
JSON:
{"text": "\uCB00"} // Value: 쬀
Python:
char = '\uCB00'
print(char) # Output: 쬀
Perl:
my $char = "\x{CB00}";
print $char; # Output: 쬀
PHP:
$char = "\x{CB00}";
echo $char; // Output: 쬀
Ruby:
char = "\u{CB00}"
puts char # Output: 쬀
Rust:
let c = '\u{CB00}';
println!("{}", c); // Output: 쬀
Go:
char := '\uCB00'
fmt.Printf("%c\n", char) // Output: 쬀
CSS:
/* CSS content property */
.element::before {
content: "\00CB00"; /* 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%AC%80
MD5:
d3d65a78d03abddd6a2f881dc85b8424
SHA1:
3b6c250fba0e1da7381f8d9402da390fdfdc3300
Base64:
7KyA