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