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