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