C:
char c = '\u2986';
printf("%c\n", c); // Output: ⦆
JavaScript:
const char = '\u2986';
console.log(char); // Output: ⦆
Java:
char c = '\u2986';
System.out.println(c); // Output: ⦆
JSON:
{"text": "\u2986"} // Value: ⦆
Python:
char = '\u2986'
print(char) # Output: ⦆
Perl:
my $char = "\x{2986}";
print $char; # Output: ⦆
PHP:
$char = "\x{2986}";
echo $char; // Output: ⦆
Ruby:
char = "\u{2986}"
puts char # Output: ⦆
Rust:
let c = '\u{2986}';
println!("{}", c); // Output: ⦆
Go:
char := '\u2986'
fmt.Printf("%c\n", char) // Output: ⦆
CSS:
/* CSS content property */
.element::before {
content: "\002986"; /* 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%86
MD5:
627b95792cedcf64294e3212002a3829
SHA1:
37e1a42153c9b67b7b574cc237ab3ed338002ced
Base64:
4qaG