C:
char c = '\uBF0B';
printf("%c\n", c); // Output: 뼋
JavaScript:
const char = '\uBF0B';
console.log(char); // Output: 뼋
Java:
char c = '\uBF0B';
System.out.println(c); // Output: 뼋
JSON:
{"text": "\uBF0B"} // Value: 뼋
Python:
char = '\uBF0B'
print(char) # Output: 뼋
Perl:
my $char = "\x{BF0B}";
print $char; # Output: 뼋
PHP:
$char = "\x{BF0B}";
echo $char; // Output: 뼋
Ruby:
char = "\u{BF0B}"
puts char # Output: 뼋
Rust:
let c = '\u{BF0B}';
println!("{}", c); // Output: 뼋
Go:
char := '\uBF0B'
fmt.Printf("%c\n", char) // Output: 뼋
CSS:
/* CSS content property */
.element::before {
content: "\00BF0B"; /* 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%BC%8B
MD5:
bbfac1f7a7a3229e35402f7803f5a8d1
SHA1:
da3307528f01c5406feabdf39b1c784d8d1483cd
Base64:
67yL