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