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