C:
char c = '\uCC02';
printf("%c\n", c); // Output: 찂
JavaScript:
const char = '\uCC02';
console.log(char); // Output: 찂
Java:
char c = '\uCC02';
System.out.println(c); // Output: 찂
JSON:
{"text": "\uCC02"} // Value: 찂
Python:
char = '\uCC02'
print(char) # Output: 찂
Perl:
my $char = "\x{CC02}";
print $char; # Output: 찂
PHP:
$char = "\x{CC02}";
echo $char; // Output: 찂
Ruby:
char = "\u{CC02}"
puts char # Output: 찂
Rust:
let c = '\u{CC02}';
println!("{}", c); // Output: 찂
Go:
char := '\uCC02'
fmt.Printf("%c\n", char) // Output: 찂
CSS:
/* CSS content property */
.element::before {
content: "\00CC02"; /* 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%82
MD5:
b04a834170871d756bd2a2ff7035a602
SHA1:
904fb7cc42234ca606b8882e7d490ec66db7f7b7
Base64:
7LCC