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