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