C:
char c = '\u2982';
printf("%c\n", c); // Output: ⦂
JavaScript:
const char = '\u2982';
console.log(char); // Output: ⦂
Java:
char c = '\u2982';
System.out.println(c); // Output: ⦂
JSON:
{"text": "\u2982"} // Value: ⦂
Python:
char = '\u2982'
print(char) # Output: ⦂
Perl:
my $char = "\x{2982}";
print $char; # Output: ⦂
PHP:
$char = "\x{2982}";
echo $char; // Output: ⦂
Ruby:
char = "\u{2982}"
puts char # Output: ⦂
Rust:
let c = '\u{2982}';
println!("{}", c); // Output: ⦂
Go:
char := '\u2982'
fmt.Printf("%c\n", char) // Output: ⦂
CSS:
/* CSS content property */
.element::before {
content: "\002982"; /* 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%82
MD5:
2d9ea69e3165126b346105df474da275
SHA1:
7f36eab81df50964239862afd9517ab23a8e2e98
Base64:
4qaC