Unicode Finder

"⍤" U+2364(APL FUNCTIONAL SYMBOL JOT DIAERESIS)

U+2364
Lohkon Nimi
Miscellaneous Technical
Nimi
APL FUNCTIONAL SYMBOL JOT DIAERESIS

Programming

C
\u2364
JavaScript
\u2364
Java
\u2364
Json
\u2364
Python
\u2364
Perl
\x{2364}
PHP
\x{2364}
Ruby
\u{2364}
Rust
\u{2364}
Go
\u2364

Web

CSS
\002364
HtmlDecimal
⍤
HtmlHexadecimal
⍤
Url
%E2%8D%A4

Code

MD5
08ee4deb53c99f0414f2d87cabbb154a
Sha1
c18be1e825f329465e546e9068c8ad5d57a7ef81
Base64
4o2k

Käyttöesimerkit

Programming Languages

C:

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

JavaScript:

const char = '\u2364';
console.log(char);  // Output: ⍤

Java:

char c = '\u2364';
System.out.println(c);  // Output: ⍤

JSON:

{"text": "\u2364"}  // Value: ⍤

Python:

char = '\u2364'
print(char)  # Output: ⍤

Perl:

my $char = "\x{2364}";
print $char;  # Output: ⍤

PHP:

$char = "\x{2364}";
echo $char;  // Output: ⍤

Ruby:

char = "\u{2364}"
puts char  # Output: ⍤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002364";  /* Display: ⍤ */
}

HTML Decimal:

<p>HTML decimal: &#9060;</p>  <!-- Display: ⍤ -->

HTML Hexadecimal:

<p>HTML hex: &#x2364;</p>  <!-- Display: ⍤ -->

URL Encoding:

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

Encodings

MD5:

08ee4deb53c99f0414f2d87cabbb154a

SHA1:

c18be1e825f329465e546e9068c8ad5d57a7ef81

Base64:

4o2k