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