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