C:
char c = '\uBF79';
printf("%c\n", c); // Output: 뽹
JavaScript:
const char = '\uBF79';
console.log(char); // Output: 뽹
Java:
char c = '\uBF79';
System.out.println(c); // Output: 뽹
JSON:
{"text": "\uBF79"} // Value: 뽹
Python:
char = '\uBF79'
print(char) # Output: 뽹
Perl:
my $char = "\x{BF79}";
print $char; # Output: 뽹
PHP:
$char = "\x{BF79}";
echo $char; // Output: 뽹
Ruby:
char = "\u{BF79}"
puts char # Output: 뽹
Rust:
let c = '\u{BF79}';
println!("{}", c); // Output: 뽹
Go:
char := '\uBF79'
fmt.Printf("%c\n", char) // Output: 뽹
CSS:
/* CSS content property */
.element::before {
content: "\00BF79"; /* 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%B9
MD5:
355bf88f6a2c7dbbe59350bdc45c36b0
SHA1:
f286c7f9e839d85df9a853424248d855759cc80d
Base64:
6725