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