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