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