C:
char c = '\u2984';
printf("%c\n", c); // Output: ⦄
JavaScript:
const char = '\u2984';
console.log(char); // Output: ⦄
Java:
char c = '\u2984';
System.out.println(c); // Output: ⦄
JSON:
{"text": "\u2984"} // Value: ⦄
Python:
char = '\u2984'
print(char) # Output: ⦄
Perl:
my $char = "\x{2984}";
print $char; # Output: ⦄
PHP:
$char = "\x{2984}";
echo $char; // Output: ⦄
Ruby:
char = "\u{2984}"
puts char # Output: ⦄
Rust:
let c = '\u{2984}';
println!("{}", c); // Output: ⦄
Go:
char := '\u2984'
fmt.Printf("%c\n", char) // Output: ⦄
CSS:
/* CSS content property */
.element::before {
content: "\002984"; /* 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%A6%84
MD5:
c680a8b800e88da91b29b05483ea25eb
SHA1:
a925ac1f206fc9fa7203cbe9510008e8a2f214e9
Base64:
4qaE