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