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