C:
char c = '\u28DF';
printf("%c\n", c); // Output: ⣟
JavaScript:
const char = '\u28DF';
console.log(char); // Output: ⣟
Java:
char c = '\u28DF';
System.out.println(c); // Output: ⣟
JSON:
{"text": "\u28DF"} // Value: ⣟
Python:
char = '\u28DF'
print(char) # Output: ⣟
Perl:
my $char = "\x{28DF}";
print $char; # Output: ⣟
PHP:
$char = "\x{28DF}";
echo $char; // Output: ⣟
Ruby:
char = "\u{28DF}"
puts char # Output: ⣟
Rust:
let c = '\u{28DF}';
println!("{}", c); // Output: ⣟
Go:
char := '\u28DF'
fmt.Printf("%c\n", char) // Output: ⣟
CSS:
/* CSS content property */
.element::before {
content: "\0028DF"; /* 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=%E2%A3%9F
MD5:
315f5a97dc497b65d8f4652d36851dce
SHA1:
9e95df8265a8396119a3349bb0d1f109656049e6
Base64:
4qOf