C:
char c = '\uBF2B';
printf("%c\n", c); // Output: 뼫
JavaScript:
const char = '\uBF2B';
console.log(char); // Output: 뼫
Java:
char c = '\uBF2B';
System.out.println(c); // Output: 뼫
JSON:
{"text": "\uBF2B"} // Value: 뼫
Python:
char = '\uBF2B'
print(char) # Output: 뼫
Perl:
my $char = "\x{BF2B}";
print $char; # Output: 뼫
PHP:
$char = "\x{BF2B}";
echo $char; // Output: 뼫
Ruby:
char = "\u{BF2B}"
puts char # Output: 뼫
Rust:
let c = '\u{BF2B}';
println!("{}", c); // Output: 뼫
Go:
char := '\uBF2B'
fmt.Printf("%c\n", char) // Output: 뼫
CSS:
/* CSS content property */
.element::before {
content: "\00BF2B"; /* 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%AB
MD5:
5b8d059775d0fc0e7aa2f6d0fc5f06b4
SHA1:
44be4e1f9435b10eab16104d155e73116a2375b0
Base64:
67yr