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