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