C:
char c = '\u28F3';
printf("%c\n", c); // Output: ⣳
JavaScript:
const char = '\u28F3';
console.log(char); // Output: ⣳
Java:
char c = '\u28F3';
System.out.println(c); // Output: ⣳
JSON:
{"text": "\u28F3"} // Value: ⣳
Python:
char = '\u28F3'
print(char) # Output: ⣳
Perl:
my $char = "\x{28F3}";
print $char; # Output: ⣳
PHP:
$char = "\x{28F3}";
echo $char; // Output: ⣳
Ruby:
char = "\u{28F3}"
puts char # Output: ⣳
Rust:
let c = '\u{28F3}';
println!("{}", c); // Output: ⣳
Go:
char := '\u28F3'
fmt.Printf("%c\n", char) // Output: ⣳
CSS:
/* CSS content property */
.element::before {
content: "\0028F3"; /* 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%B3
MD5:
e89eb3d8189a5eb9394e3f8295366e59
SHA1:
42b954243cd88d2b65d90df59a7d4a9328e8e358
Base64:
4qOz