Unicode Finder

"⟌" U+27CC(LONG DIVISION)

U+27CC
Block Name
Miscellaneous Mathematical Symbols-A
Name
LONG DIVISION

Programming

C
\u27CC
JavaScript
\u27CC
Java
\u27CC
Json
\u27CC
Python
\u27CC
Perl
\x{27CC}
PHP
\x{27CC}
Ruby
\u{27CC}
Rust
\u{27CC}
Go
\u27CC

Web

CSS
\0027CC
HtmlDecimal
⟌
HtmlHexadecimal
⟌
Url
%E2%9F%8C

Code

MD5
9a8e07455a960c39faa2e4139eeaac87
Sha1
45d6eb0040bbb4fea1188122e6487f18a0e5b93b
Base64
4p+M

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u27CC';
console.log(char);  // Output: ⟌

Java:

char c = '\u27CC';
System.out.println(c);  // Output: ⟌

JSON:

{"text": "\u27CC"}  // Value: ⟌

Python:

char = '\u27CC'
print(char)  # Output: ⟌

Perl:

my $char = "\x{27CC}";
print $char;  # Output: ⟌

PHP:

$char = "\x{27CC}";
echo $char;  // Output: ⟌

Ruby:

char = "\u{27CC}"
puts char  # Output: ⟌

Rust:

let c = '\u{27CC}';
println!("{}", c);  // Output: ⟌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0027CC";  /* Display: ⟌ */
}

HTML Decimal:

<p>HTML decimal: &#10188;</p>  <!-- Display: ⟌ -->

HTML Hexadecimal:

<p>HTML hex: &#x27CC;</p>  <!-- Display: ⟌ -->

URL Encoding:

// ⟌ URL encoding
https://unicodefinder.com/search.php?query=%E2%9F%8C

Encodings

MD5:

9a8e07455a960c39faa2e4139eeaac87

SHA1:

45d6eb0040bbb4fea1188122e6487f18a0e5b93b

Base64:

4p+M