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