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