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