C:
char c = '\u2DEC';
printf("%c\n", c); // Output: ⷬ
JavaScript:
const char = '\u2DEC';
console.log(char); // Output: ⷬ
Java:
char c = '\u2DEC';
System.out.println(c); // Output: ⷬ
JSON:
{"text": "\u2DEC"} // Value: ⷬ
Python:
char = '\u2DEC'
print(char) # Output: ⷬ
Perl:
my $char = "\x{2DEC}";
print $char; # Output: ⷬ
PHP:
$char = "\x{2DEC}";
echo $char; // Output: ⷬ
Ruby:
char = "\u{2DEC}"
puts char # Output: ⷬ
Rust:
let c = '\u{2DEC}';
println!("{}", c); // Output: ⷬ
Go:
char := '\u2DEC'
fmt.Printf("%c\n", char) // Output: ⷬ
CSS:
/* CSS content property */
.element::before {
content: "\002DEC"; /* 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%B7%AC
MD5:
be48bfd37deb7d9c7ceab7263828d813
SHA1:
8882594e6e0ff0ebdb9c80ca6c885c100f290f74
Base64:
4res