C:
char c = '\uC484';
printf("%c\n", c); // Output: 쒄
JavaScript:
const char = '\uC484';
console.log(char); // Output: 쒄
Java:
char c = '\uC484';
System.out.println(c); // Output: 쒄
JSON:
{"text": "\uC484"} // Value: 쒄
Python:
char = '\uC484'
print(char) # Output: 쒄
Perl:
my $char = "\x{C484}";
print $char; # Output: 쒄
PHP:
$char = "\x{C484}";
echo $char; // Output: 쒄
Ruby:
char = "\u{C484}"
puts char # Output: 쒄
Rust:
let c = '\u{C484}';
println!("{}", c); // Output: 쒄
Go:
char := '\uC484'
fmt.Printf("%c\n", char) // Output: 쒄
CSS:
/* CSS content property */
.element::before {
content: "\00C484"; /* 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%84
MD5:
2c7eac0fcbefb9e1f89d23d026da5875
SHA1:
73162f25a46bde60fe3ceff5cd6ce468542c5df6
Base64:
7JKE