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