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