C:
char c = '\uC889';
printf("%c\n", c); // Output: 좉
JavaScript:
const char = '\uC889';
console.log(char); // Output: 좉
Java:
char c = '\uC889';
System.out.println(c); // Output: 좉
JSON:
{"text": "\uC889"} // Value: 좉
Python:
char = '\uC889'
print(char) # Output: 좉
Perl:
my $char = "\x{C889}";
print $char; # Output: 좉
PHP:
$char = "\x{C889}";
echo $char; // Output: 좉
Ruby:
char = "\u{C889}"
puts char # Output: 좉
Rust:
let c = '\u{C889}';
println!("{}", c); // Output: 좉
Go:
char := '\uC889'
fmt.Printf("%c\n", char) // Output: 좉
CSS:
/* CSS content property */
.element::before {
content: "\00C889"; /* 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%89
MD5:
79dfe1837b578433f70370542e85fb2d
SHA1:
658241729c76d94f91a4bb833e7f633d0e4b729f
Base64:
7KKJ