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