C:
char c = '\uC2B1';
printf("%c\n", c); // Output: 슱
JavaScript:
const char = '\uC2B1';
console.log(char); // Output: 슱
Java:
char c = '\uC2B1';
System.out.println(c); // Output: 슱
JSON:
{"text": "\uC2B1"} // Value: 슱
Python:
char = '\uC2B1'
print(char) # Output: 슱
Perl:
my $char = "\x{C2B1}";
print $char; # Output: 슱
PHP:
$char = "\x{C2B1}";
echo $char; // Output: 슱
Ruby:
char = "\u{C2B1}"
puts char # Output: 슱
Rust:
let c = '\u{C2B1}';
println!("{}", c); // Output: 슱
Go:
char := '\uC2B1'
fmt.Printf("%c\n", char) // Output: 슱
CSS:
/* CSS content property */
.element::before {
content: "\00C2B1"; /* 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%8A%B1
MD5:
ca9bfcdbf858ac46c3653c30c02c9c9e
SHA1:
655513be7d5ee8cfb1970fc631ec006c48d94509
Base64:
7Iqx