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