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