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