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