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