C:
char c = '\uB516';
printf("%c\n", c); // Output: 딖
JavaScript:
const char = '\uB516';
console.log(char); // Output: 딖
Java:
char c = '\uB516';
System.out.println(c); // Output: 딖
JSON:
{"text": "\uB516"} // Value: 딖
Python:
char = '\uB516'
print(char) # Output: 딖
Perl:
my $char = "\x{B516}";
print $char; # Output: 딖
PHP:
$char = "\x{B516}";
echo $char; // Output: 딖
Ruby:
char = "\u{B516}"
puts char # Output: 딖
Rust:
let c = '\u{B516}';
println!("{}", c); // Output: 딖
Go:
char := '\uB516'
fmt.Printf("%c\n", char) // Output: 딖
CSS:
/* CSS content property */
.element::before {
content: "\00B516"; /* 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=%EB%94%96
MD5:
5d09d601e149a2cfcdab78b845d8d3b5
SHA1:
242a4d3d5d5c21f96b0a50ad0dbc7fec2dd7ff77
Base64:
65SW