C:
char c = '\u2828';
printf("%c\n", c); // Output: ⠨
JavaScript:
const char = '\u2828';
console.log(char); // Output: ⠨
Java:
char c = '\u2828';
System.out.println(c); // Output: ⠨
JSON:
{"text": "\u2828"} // Value: ⠨
Python:
char = '\u2828'
print(char) # Output: ⠨
Perl:
my $char = "\x{2828}";
print $char; # Output: ⠨
PHP:
$char = "\x{2828}";
echo $char; // Output: ⠨
Ruby:
char = "\u{2828}"
puts char # Output: ⠨
Rust:
let c = '\u{2828}';
println!("{}", c); // Output: ⠨
Go:
char := '\u2828'
fmt.Printf("%c\n", char) // Output: ⠨
CSS:
/* CSS content property */
.element::before {
content: "\002828"; /* 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%A8
MD5:
6fb32a87d4e7ce7c66b8e37563b7e209
SHA1:
6e3431b05fd8b2d3bf5c7e530027f5af9d25a115
Base64:
4qCo