Unicode Finder

"⍡" U+2361(APL FUNCTIONAL SYMBOL UP TACK DIAERESIS)

U+2361
שם בלוק
Miscellaneous Technical
שם
APL FUNCTIONAL SYMBOL UP TACK DIAERESIS

Programming

C
\u2361
JavaScript
\u2361
Java
\u2361
Json
\u2361
Python
\u2361
Perl
\x{2361}
PHP
\x{2361}
Ruby
\u{2361}
Rust
\u{2361}
Go
\u2361

Web

CSS
\002361
HtmlDecimal
⍡
HtmlHexadecimal
⍡
Url
%E2%8D%A1

Code

MD5
d7761ba5c97b7434c726380cc4cc2916
Sha1
f673be8fc716629d82a7ae10e70e5526a436a228
Base64
4o2h

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

Programming Languages

C:

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

JavaScript:

const char = '\u2361';
console.log(char);  // Output: ⍡

Java:

char c = '\u2361';
System.out.println(c);  // Output: ⍡

JSON:

{"text": "\u2361"}  // Value: ⍡

Python:

char = '\u2361'
print(char)  # Output: ⍡

Perl:

my $char = "\x{2361}";
print $char;  # Output: ⍡

PHP:

$char = "\x{2361}";
echo $char;  // Output: ⍡

Ruby:

char = "\u{2361}"
puts char  # Output: ⍡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002361";  /* Display: ⍡ */
}

HTML Decimal:

<p>HTML decimal: &#9057;</p>  <!-- Display: ⍡ -->

HTML Hexadecimal:

<p>HTML hex: &#x2361;</p>  <!-- Display: ⍡ -->

URL Encoding:

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

Encodings

MD5:

d7761ba5c97b7434c726380cc4cc2916

SHA1:

f673be8fc716629d82a7ae10e70e5526a436a228

Base64:

4o2h