C:
char c = '\u2981';
printf("%c\n", c); // Output: ⦁
JavaScript:
const char = '\u2981';
console.log(char); // Output: ⦁
Java:
char c = '\u2981';
System.out.println(c); // Output: ⦁
JSON:
{"text": "\u2981"} // Value: ⦁
Python:
char = '\u2981'
print(char) # Output: ⦁
Perl:
my $char = "\x{2981}";
print $char; # Output: ⦁
PHP:
$char = "\x{2981}";
echo $char; // Output: ⦁
Ruby:
char = "\u{2981}"
puts char # Output: ⦁
Rust:
let c = '\u{2981}';
println!("{}", c); // Output: ⦁
Go:
char := '\u2981'
fmt.Printf("%c\n", char) // Output: ⦁
CSS:
/* CSS content property */
.element::before {
content: "\002981"; /* 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%81
MD5:
851d92b6d70c90a8bb7c716e39636310
SHA1:
a7c0460a707b305405d4cf53125bf10023ce1bda
Base64:
4qaB