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