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