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