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