Unicode Finder

"÷" U+00F7(DIVISION SIGN)

÷
U+00F7
Block Name
Latin-1 Supplement
Name
DIVISION SIGN

Programming

C
\u00F7
JavaScript
\u00F7
Java
\u00F7
Json
\u00F7
Python
\u00F7
Perl
\x{00F7}
PHP
\x{00F7}
Ruby
\u{00F7}
Rust
\u{F7}
Go
\u00F7

Web

CSS
\0000F7
HtmlDecimal
÷
HtmlHexadecimal
÷
Url
%C3%B7

Code

MD5
e838bb54986d1162d354a4f9ca45dd8c
Sha1
382f73261bdc4881210c6f123764a3d243c12e1f
Base64
w7c=

Usage Examples

Programming Languages

C:

char c = '\u00F7';
printf("%c\n", c);  // Output: ÷

JavaScript:

const char = '\u00F7';
console.log(char);  // Output: ÷

Java:

char c = '\u00F7';
System.out.println(c);  // Output: ÷

JSON:

{"text": "\u00F7"}  // Value: ÷

Python:

char = '\u00F7'
print(char)  # Output: ÷

Perl:

my $char = "\x{00F7}";
print $char;  # Output: ÷

PHP:

$char = "\x{00F7}";
echo $char;  // Output: ÷

Ruby:

char = "\u{00F7}"
puts char  # Output: ÷

Rust:

let c = '\u{F7}';
println!("{}", c);  // Output: ÷

Go:

char := '\u00F7'
fmt.Printf("%c\n", char)  // Output: ÷

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0000F7";  /* Display: ÷ */
}

HTML Decimal:

<p>HTML decimal: &#247;</p>  <!-- Display: ÷ -->

HTML Hexadecimal:

<p>HTML hex: &#x00F7;</p>  <!-- Display: ÷ -->

URL Encoding:

// ÷ URL encoding
https://unicodefinder.com/search.php?query=%C3%B7

Encodings

MD5:

e838bb54986d1162d354a4f9ca45dd8c

SHA1:

382f73261bdc4881210c6f123764a3d243c12e1f

Base64:

w7c=