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