C:
char c = '\uCAAC';
printf("%c\n", c); // Output: 쪬
JavaScript:
const char = '\uCAAC';
console.log(char); // Output: 쪬
Java:
char c = '\uCAAC';
System.out.println(c); // Output: 쪬
JSON:
{"text": "\uCAAC"} // Value: 쪬
Python:
char = '\uCAAC'
print(char) # Output: 쪬
Perl:
my $char = "\x{CAAC}";
print $char; # Output: 쪬
PHP:
$char = "\x{CAAC}";
echo $char; // Output: 쪬
Ruby:
char = "\u{CAAC}"
puts char # Output: 쪬
Rust:
let c = '\u{CAAC}';
println!("{}", c); // Output: 쪬
Go:
char := '\uCAAC'
fmt.Printf("%c\n", char) // Output: 쪬
CSS:
/* CSS content property */
.element::before {
content: "\00CAAC"; /* 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%AA%AC
MD5:
63d65f2c3032b2c2ce87b0253581d534
SHA1:
c39c61c584f75ded81e6c9632aef5823a297143b
Base64:
7Kqs