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