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