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