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