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