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