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