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