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