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