C:
char c = '\uC898';
printf("%c\n", c); // Output: 좘
JavaScript:
const char = '\uC898';
console.log(char); // Output: 좘
Java:
char c = '\uC898';
System.out.println(c); // Output: 좘
JSON:
{"text": "\uC898"} // Value: 좘
Python:
char = '\uC898'
print(char) # Output: 좘
Perl:
my $char = "\x{C898}";
print $char; # Output: 좘
PHP:
$char = "\x{C898}";
echo $char; // Output: 좘
Ruby:
char = "\u{C898}"
puts char # Output: 좘
Rust:
let c = '\u{C898}';
println!("{}", c); // Output: 좘
Go:
char := '\uC898'
fmt.Printf("%c\n", char) // Output: 좘
CSS:
/* CSS content property */
.element::before {
content: "\00C898"; /* 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%98
MD5:
6be696f0a58eb461dd9de9e88c0f9ee4
SHA1:
70d50127dce92b5c97610f8eff6a36070cefcd5c
Base64:
7KKY