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