C:
char c = '\uCC1A';
printf("%c\n", c); // Output: 찚
JavaScript:
const char = '\uCC1A';
console.log(char); // Output: 찚
Java:
char c = '\uCC1A';
System.out.println(c); // Output: 찚
JSON:
{"text": "\uCC1A"} // Value: 찚
Python:
char = '\uCC1A'
print(char) # Output: 찚
Perl:
my $char = "\x{CC1A}";
print $char; # Output: 찚
PHP:
$char = "\x{CC1A}";
echo $char; // Output: 찚
Ruby:
char = "\u{CC1A}"
puts char # Output: 찚
Rust:
let c = '\u{CC1A}';
println!("{}", c); // Output: 찚
Go:
char := '\uCC1A'
fmt.Printf("%c\n", char) // Output: 찚
CSS:
/* CSS content property */
.element::before {
content: "\00CC1A"; /* 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%9A
MD5:
2a1257db9af29c494abd961b71acd630
SHA1:
ea42d7518657edcccd6ccd02bf84e5ec6df53f38
Base64:
7LCa