C:
char c = '\uC242';
printf("%c\n", c); // Output: 쉂
JavaScript:
const char = '\uC242';
console.log(char); // Output: 쉂
Java:
char c = '\uC242';
System.out.println(c); // Output: 쉂
JSON:
{"text": "\uC242"} // Value: 쉂
Python:
char = '\uC242'
print(char) # Output: 쉂
Perl:
my $char = "\x{C242}";
print $char; # Output: 쉂
PHP:
$char = "\x{C242}";
echo $char; // Output: 쉂
Ruby:
char = "\u{C242}"
puts char # Output: 쉂
Rust:
let c = '\u{C242}';
println!("{}", c); // Output: 쉂
Go:
char := '\uC242'
fmt.Printf("%c\n", char) // Output: 쉂
CSS:
/* CSS content property */
.element::before {
content: "\00C242"; /* 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%89%82
MD5:
7919f429efe844ec651a8ec7d2453dc3
SHA1:
f82e6c8223ea1c744ed018b0ca90717a1e5d7426
Base64:
7ImC