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