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