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