C:
char c = '\u2899';
printf("%c\n", c); // Output: ⢙
JavaScript:
const char = '\u2899';
console.log(char); // Output: ⢙
Java:
char c = '\u2899';
System.out.println(c); // Output: ⢙
JSON:
{"text": "\u2899"} // Value: ⢙
Python:
char = '\u2899'
print(char) # Output: ⢙
Perl:
my $char = "\x{2899}";
print $char; # Output: ⢙
PHP:
$char = "\x{2899}";
echo $char; // Output: ⢙
Ruby:
char = "\u{2899}"
puts char # Output: ⢙
Rust:
let c = '\u{2899}';
println!("{}", c); // Output: ⢙
Go:
char := '\u2899'
fmt.Printf("%c\n", char) // Output: ⢙
CSS:
/* CSS content property */
.element::before {
content: "\002899"; /* 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%99
MD5:
a02007c08cfe04eb99395767d0f5f6e8
SHA1:
33a3a218e5e25440ddcd462d9271d0cd1c360774
Base64:
4qKZ