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