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