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