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