C:
char c = '\u2313';
printf("%c\n", c); // Output: ⌓
JavaScript:
const char = '\u2313';
console.log(char); // Output: ⌓
Java:
char c = '\u2313';
System.out.println(c); // Output: ⌓
JSON:
{"text": "\u2313"} // Value: ⌓
Python:
char = '\u2313'
print(char) # Output: ⌓
Perl:
my $char = "\x{2313}";
print $char; # Output: ⌓
PHP:
$char = "\x{2313}";
echo $char; // Output: ⌓
Ruby:
char = "\u{2313}"
puts char # Output: ⌓
Rust:
let c = '\u{2313}';
println!("{}", c); // Output: ⌓
Go:
char := '\u2313'
fmt.Printf("%c\n", char) // Output: ⌓
CSS:
/* CSS content property */
.element::before {
content: "\002313"; /* 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%93
MD5:
ba07e7e81b72f2db479ebed970eee174
SHA1:
b1f096f8a7dcbf51c971cfaf4d4597a90066e53b
Base64:
4oyT