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