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