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