C:
char c = '\u2808';
printf("%c\n", c); // Output: ⠈
JavaScript:
const char = '\u2808';
console.log(char); // Output: ⠈
Java:
char c = '\u2808';
System.out.println(c); // Output: ⠈
JSON:
{"text": "\u2808"} // Value: ⠈
Python:
char = '\u2808'
print(char) # Output: ⠈
Perl:
my $char = "\x{2808}";
print $char; # Output: ⠈
PHP:
$char = "\x{2808}";
echo $char; // Output: ⠈
Ruby:
char = "\u{2808}"
puts char # Output: ⠈
Rust:
let c = '\u{2808}';
println!("{}", c); // Output: ⠈
Go:
char := '\u2808'
fmt.Printf("%c\n", char) // Output: ⠈
CSS:
/* CSS content property */
.element::before {
content: "\002808"; /* 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%A0%88
MD5:
3d8be10ec3091c2427f3e51a6313498b
SHA1:
bc6bfa06415ce45f797b33be05cf1c059d422d03
Base64:
4qCI