C:
char c = '\uD563';
printf("%c\n", c); // Output: 핣
JavaScript:
const char = '\uD563';
console.log(char); // Output: 핣
Java:
char c = '\uD563';
System.out.println(c); // Output: 핣
JSON:
{"text": "\uD563"} // Value: 핣
Python:
char = '\uD563'
print(char) # Output: 핣
Perl:
my $char = "\x{D563}";
print $char; # Output: 핣
PHP:
$char = "\x{D563}";
echo $char; // Output: 핣
Ruby:
char = "\u{D563}"
puts char # Output: 핣
Rust:
let c = '\u{D563}';
println!("{}", c); // Output: 핣
Go:
char := '\uD563'
fmt.Printf("%c\n", char) // Output: 핣
CSS:
/* CSS content property */
.element::before {
content: "\00D563"; /* 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=%ED%95%A3
MD5:
2d70af9d9325597c301b11ddb3b07dc1
SHA1:
adebcf9cd900f4ac365d719cfc88611553bf9b34
Base64:
7ZWj