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