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