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