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