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