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