Unicode Finder

"∕" U+2215(DIVISION SLASH)

U+2215
Tên Khối
Mathematical Operators
Tên
DIVISION SLASH

Programming

C
\u2215
JavaScript
\u2215
Java
\u2215
Json
\u2215
Python
\u2215
Perl
\x{2215}
PHP
\x{2215}
Ruby
\u{2215}
Rust
\u{2215}
Go
\u2215

Web

CSS
\002215
HtmlDecimal
∕
HtmlHexadecimal
∕
Url
%E2%88%95

Code

MD5
ed1eeed815b854d9ed2b884f95208bb3
Sha1
80866a6fc8dbd53e7f0f354bcae2a40e046de621
Base64
4oiV

Ví dụ Sử dụng

Programming Languages

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: ∕

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002215";  /* Display: ∕ */
}

HTML Decimal:

<p>HTML decimal: &#8725;</p>  <!-- Display: ∕ -->

HTML Hexadecimal:

<p>HTML hex: &#x2215;</p>  <!-- Display: ∕ -->

URL Encoding:

// ∕ URL encoding
https://unicodefinder.com/search.php?query=%E2%88%95

Encodings

MD5:

ed1eeed815b854d9ed2b884f95208bb3

SHA1:

80866a6fc8dbd53e7f0f354bcae2a40e046de621

Base64:

4oiV