Unicode Finder

"⍷" U+2377(APL FUNCTIONAL SYMBOL EPSILON UNDERBAR)

U+2377
שם בלוק
Miscellaneous Technical
שם
APL FUNCTIONAL SYMBOL EPSILON UNDERBAR

Programming

C
\u2377
JavaScript
\u2377
Java
\u2377
Json
\u2377
Python
\u2377
Perl
\x{2377}
PHP
\x{2377}
Ruby
\u{2377}
Rust
\u{2377}
Go
\u2377

Web

CSS
\002377
HtmlDecimal
⍷
HtmlHexadecimal
⍷
Url
%E2%8D%B7

Code

MD5
08d15a888769d9b9d37d029d8b2b74f9
Sha1
dbaa9b2642d3252eccc700cc421bf4899b1ab0b9
Base64
4o23

דוגמאות שימוש

Programming Languages

C:

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

JavaScript:

const char = '\u2377';
console.log(char);  // Output: ⍷

Java:

char c = '\u2377';
System.out.println(c);  // Output: ⍷

JSON:

{"text": "\u2377"}  // Value: ⍷

Python:

char = '\u2377'
print(char)  # Output: ⍷

Perl:

my $char = "\x{2377}";
print $char;  # Output: ⍷

PHP:

$char = "\x{2377}";
echo $char;  // Output: ⍷

Ruby:

char = "\u{2377}"
puts char  # Output: ⍷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002377";  /* Display: ⍷ */
}

HTML Decimal:

<p>HTML decimal: &#9079;</p>  <!-- Display: ⍷ -->

HTML Hexadecimal:

<p>HTML hex: &#x2377;</p>  <!-- Display: ⍷ -->

URL Encoding:

// ⍷ URL encoding
https://unicodefinder.com/search.php?query=%E2%8D%B7

Encodings

MD5:

08d15a888769d9b9d37d029d8b2b74f9

SHA1:

dbaa9b2642d3252eccc700cc421bf4899b1ab0b9

Base64:

4o23