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