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