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