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