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