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