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