C:
char c = '\uCA48';
printf("%c\n", c); // Output: 쩈
JavaScript:
const char = '\uCA48';
console.log(char); // Output: 쩈
Java:
char c = '\uCA48';
System.out.println(c); // Output: 쩈
JSON:
{"text": "\uCA48"} // Value: 쩈
Python:
char = '\uCA48'
print(char) # Output: 쩈
Perl:
my $char = "\x{CA48}";
print $char; # Output: 쩈
PHP:
$char = "\x{CA48}";
echo $char; // Output: 쩈
Ruby:
char = "\u{CA48}"
puts char # Output: 쩈
Rust:
let c = '\u{CA48}';
println!("{}", c); // Output: 쩈
Go:
char := '\uCA48'
fmt.Printf("%c\n", char) // Output: 쩈
CSS:
/* CSS content property */
.element::before {
content: "\00CA48"; /* 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%A9%88
MD5:
4f9d8884f4d253cdd5b4b0f2031df757
SHA1:
93622596df2f7e63458c3a3b24737ffe622c33a6
Base64:
7KmI