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