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