Unicode Finder

"⧞" U+29DE(INFINITY NEGATED WITH VERTICAL BAR)

U+29DE
Block Name
Miscellaneous Mathematical Symbols-B
Name
INFINITY NEGATED WITH VERTICAL BAR

Programming

C
\u29DE
JavaScript
\u29DE
Java
\u29DE
Json
\u29DE
Python
\u29DE
Perl
\x{29DE}
PHP
\x{29DE}
Ruby
\u{29DE}
Rust
\u{29DE}
Go
\u29DE

Web

CSS
\0029DE
HtmlDecimal
⧞
HtmlHexadecimal
⧞
Url
%E2%A7%9E

Code

MD5
3b40e9eb0ca4e576ffcad1f95f173814
Sha1
b3a44770d2e633af8b6a8bf06e7b85d30a3df2ff
Base64
4qee

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u29DE';
console.log(char);  // Output: ⧞

Java:

char c = '\u29DE';
System.out.println(c);  // Output: ⧞

JSON:

{"text": "\u29DE"}  // Value: ⧞

Python:

char = '\u29DE'
print(char)  # Output: ⧞

Perl:

my $char = "\x{29DE}";
print $char;  # Output: ⧞

PHP:

$char = "\x{29DE}";
echo $char;  // Output: ⧞

Ruby:

char = "\u{29DE}"
puts char  # Output: ⧞

Rust:

let c = '\u{29DE}';
println!("{}", c);  // Output: ⧞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0029DE";  /* Display: ⧞ */
}

HTML Decimal:

<p>HTML decimal: &#10718;</p>  <!-- Display: ⧞ -->

HTML Hexadecimal:

<p>HTML hex: &#x29DE;</p>  <!-- Display: ⧞ -->

URL Encoding:

// ⧞ URL encoding
https://unicodefinder.com/search.php?query=%E2%A7%9E

Encodings

MD5:

3b40e9eb0ca4e576ffcad1f95f173814

SHA1:

b3a44770d2e633af8b6a8bf06e7b85d30a3df2ff

Base64:

4qee