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