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