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