C:
char c = '\u2888';
printf("%c\n", c); // Output: ⢈
JavaScript:
const char = '\u2888';
console.log(char); // Output: ⢈
Java:
char c = '\u2888';
System.out.println(c); // Output: ⢈
JSON:
{"text": "\u2888"} // Value: ⢈
Python:
char = '\u2888'
print(char) # Output: ⢈
Perl:
my $char = "\x{2888}";
print $char; # Output: ⢈
PHP:
$char = "\x{2888}";
echo $char; // Output: ⢈
Ruby:
char = "\u{2888}"
puts char # Output: ⢈
Rust:
let c = '\u{2888}';
println!("{}", c); // Output: ⢈
Go:
char := '\u2888'
fmt.Printf("%c\n", char) // Output: ⢈
CSS:
/* CSS content property */
.element::before {
content: "\002888"; /* 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%A2%88
MD5:
9dd6d9aeff852725d9bdb953475448a9
SHA1:
1c2ffb8a9983ffcb64e5fca454fb4fd2e485dd7f
Base64:
4qKI