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