C:
char c = '\u2317';
printf("%c\n", c); // Output: ⌗
JavaScript:
const char = '\u2317';
console.log(char); // Output: ⌗
Java:
char c = '\u2317';
System.out.println(c); // Output: ⌗
JSON:
{"text": "\u2317"} // Value: ⌗
Python:
char = '\u2317'
print(char) # Output: ⌗
Perl:
my $char = "\x{2317}";
print $char; # Output: ⌗
PHP:
$char = "\x{2317}";
echo $char; // Output: ⌗
Ruby:
char = "\u{2317}"
puts char # Output: ⌗
Rust:
let c = '\u{2317}';
println!("{}", c); // Output: ⌗
Go:
char := '\u2317'
fmt.Printf("%c\n", char) // Output: ⌗
CSS:
/* CSS content property */
.element::before {
content: "\002317"; /* 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%97
MD5:
57bfc560e3815fa0232b2c8e417b4ce9
SHA1:
f281de911ca74dc2d2405c9003c69c51c501434c
Base64:
4oyX