Unicode Finder

"⍹" U+2379(APL FUNCTIONAL SYMBOL OMEGA UNDERBAR)

U+2379
Blokknavn
Miscellaneous Technical
Navn
APL FUNCTIONAL SYMBOL OMEGA UNDERBAR

Programming

C
\u2379
JavaScript
\u2379
Java
\u2379
Json
\u2379
Python
\u2379
Perl
\x{2379}
PHP
\x{2379}
Ruby
\u{2379}
Rust
\u{2379}
Go
\u2379

Web

CSS
\002379
HtmlDecimal
⍹
HtmlHexadecimal
⍹
Url
%E2%8D%B9

Code

MD5
2239e57ecdda32e127288c616cb40f4f
Sha1
02d68b3f48f7dc1e7f253f74cdfad449904b4cd5
Base64
4o25

Brukseksempler

Programming Languages

C:

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

JavaScript:

const char = '\u2379';
console.log(char);  // Output: ⍹

Java:

char c = '\u2379';
System.out.println(c);  // Output: ⍹

JSON:

{"text": "\u2379"}  // Value: ⍹

Python:

char = '\u2379'
print(char)  # Output: ⍹

Perl:

my $char = "\x{2379}";
print $char;  # Output: ⍹

PHP:

$char = "\x{2379}";
echo $char;  // Output: ⍹

Ruby:

char = "\u{2379}"
puts char  # Output: ⍹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002379";  /* Display: ⍹ */
}

HTML Decimal:

<p>HTML decimal: &#9081;</p>  <!-- Display: ⍹ -->

HTML Hexadecimal:

<p>HTML hex: &#x2379;</p>  <!-- Display: ⍹ -->

URL Encoding:

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

Encodings

MD5:

2239e57ecdda32e127288c616cb40f4f

SHA1:

02d68b3f48f7dc1e7f253f74cdfad449904b4cd5

Base64:

4o25