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