C:
char c = '\u2316';
printf("%c\n", c); // Output: ⌖
JavaScript:
const char = '\u2316';
console.log(char); // Output: ⌖
Java:
char c = '\u2316';
System.out.println(c); // Output: ⌖
JSON:
{"text": "\u2316"} // Value: ⌖
Python:
char = '\u2316'
print(char) # Output: ⌖
Perl:
my $char = "\x{2316}";
print $char; # Output: ⌖
PHP:
$char = "\x{2316}";
echo $char; // Output: ⌖
Ruby:
char = "\u{2316}"
puts char # Output: ⌖
Rust:
let c = '\u{2316}';
println!("{}", c); // Output: ⌖
Go:
char := '\u2316'
fmt.Printf("%c\n", char) // Output: ⌖
CSS:
/* CSS content property */
.element::before {
content: "\002316"; /* 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%8C%96
MD5:
0072728c792d91c956965eb9db077b56
SHA1:
04f80e067ca5ef0a38e0d229fd63251b3e017e60
Base64:
4oyW