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