C:
char c = '\u2847';
printf("%c\n", c); // Output: ⡇
JavaScript:
const char = '\u2847';
console.log(char); // Output: ⡇
Java:
char c = '\u2847';
System.out.println(c); // Output: ⡇
JSON:
{"text": "\u2847"} // Value: ⡇
Python:
char = '\u2847'
print(char) # Output: ⡇
Perl:
my $char = "\x{2847}";
print $char; # Output: ⡇
PHP:
$char = "\x{2847}";
echo $char; // Output: ⡇
Ruby:
char = "\u{2847}"
puts char # Output: ⡇
Rust:
let c = '\u{2847}';
println!("{}", c); // Output: ⡇
Go:
char := '\u2847'
fmt.Printf("%c\n", char) // Output: ⡇
CSS:
/* CSS content property */
.element::before {
content: "\002847"; /* 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%A1%87
MD5:
0a35c7d33028446bbab5dfc12f3d94d0
SHA1:
863178fbec19a3cd6335df8c696e80a946e42123
Base64:
4qGH