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