C:
char c = '\uC1F0';
printf("%c\n", c); // Output: 쇰
JavaScript:
const char = '\uC1F0';
console.log(char); // Output: 쇰
Java:
char c = '\uC1F0';
System.out.println(c); // Output: 쇰
JSON:
{"text": "\uC1F0"} // Value: 쇰
Python:
char = '\uC1F0'
print(char) # Output: 쇰
Perl:
my $char = "\x{C1F0}";
print $char; # Output: 쇰
PHP:
$char = "\x{C1F0}";
echo $char; // Output: 쇰
Ruby:
char = "\u{C1F0}"
puts char # Output: 쇰
Rust:
let c = '\u{C1F0}';
println!("{}", c); // Output: 쇰
Go:
char := '\uC1F0'
fmt.Printf("%c\n", char) // Output: 쇰
CSS:
/* CSS content property */
.element::before {
content: "\00C1F0"; /* 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%87%B0
MD5:
70ecdf58ba760d11c8eb09a28393eadc
SHA1:
3be02f9c37c4ecb582ee25bd827a2b13b91298c5
Base64:
7Iew