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