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