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