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