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