C:
char c = '\u2827';
printf("%c\n", c); // Output: ⠧
JavaScript:
const char = '\u2827';
console.log(char); // Output: ⠧
Java:
char c = '\u2827';
System.out.println(c); // Output: ⠧
JSON:
{"text": "\u2827"} // Value: ⠧
Python:
char = '\u2827'
print(char) # Output: ⠧
Perl:
my $char = "\x{2827}";
print $char; # Output: ⠧
PHP:
$char = "\x{2827}";
echo $char; // Output: ⠧
Ruby:
char = "\u{2827}"
puts char # Output: ⠧
Rust:
let c = '\u{2827}';
println!("{}", c); // Output: ⠧
Go:
char := '\u2827'
fmt.Printf("%c\n", char) // Output: ⠧
CSS:
/* CSS content property */
.element::before {
content: "\002827"; /* 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%A7
MD5:
1f0b796c368df880a4a88443fe1c4060
SHA1:
74aa2b256dfcd49d8aabed407314d8cd19543a3b
Base64:
4qCn