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