C:
char c = '\u2215';
printf("%c\n", c); // Output: ∕
JavaScript:
const char = '\u2215';
console.log(char); // Output: ∕
Java:
char c = '\u2215';
System.out.println(c); // Output: ∕
JSON:
{"text": "\u2215"} // Value: ∕
Python:
char = '\u2215'
print(char) # Output: ∕
Perl:
my $char = "\x{2215}";
print $char; # Output: ∕
PHP:
$char = "\x{2215}";
echo $char; // Output: ∕
Ruby:
char = "\u{2215}"
puts char # Output: ∕
Rust:
let c = '\u{2215}';
println!("{}", c); // Output: ∕
Go:
char := '\u2215'
fmt.Printf("%c\n", char) // Output: ∕
CSS:
/* CSS content property */
.element::before {
content: "\002215"; /* 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%88%95
MD5:
ed1eeed815b854d9ed2b884f95208bb3
SHA1:
80866a6fc8dbd53e7f0f354bcae2a40e046de621
Base64:
4oiV