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