C:
char c = '\uBFB7';
printf("%c\n", c); // Output: 뾷
JavaScript:
const char = '\uBFB7';
console.log(char); // Output: 뾷
Java:
char c = '\uBFB7';
System.out.println(c); // Output: 뾷
JSON:
{"text": "\uBFB7"} // Value: 뾷
Python:
char = '\uBFB7'
print(char) # Output: 뾷
Perl:
my $char = "\x{BFB7}";
print $char; # Output: 뾷
PHP:
$char = "\x{BFB7}";
echo $char; // Output: 뾷
Ruby:
char = "\u{BFB7}"
puts char # Output: 뾷
Rust:
let c = '\u{BFB7}';
println!("{}", c); // Output: 뾷
Go:
char := '\uBFB7'
fmt.Printf("%c\n", char) // Output: 뾷
CSS:
/* CSS content property */
.element::before {
content: "\00BFB7"; /* 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%B7
MD5:
9844c851ccc245aff19536a63e74cb30
SHA1:
1395bb720964e1d85d22e896c04159d27b50a916
Base64:
6763