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