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