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