Unicode Finder

"Ͻ" U+03FD(GREEK CAPITAL REVERSED LUNATE SIGMA SYMBOL)

Ͻ
U+03FD
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK CAPITAL REVERSED LUNATE SIGMA SYMBOL

Programming

C
\u03FD
JavaScript
\u03FD
Java
\u03FD
Json
\u03FD
Python
\u03FD
Perl
\x{03FD}
PHP
\x{03FD}
Ruby
\u{03FD}
Rust
\u{3FD}
Go
\u03FD

Web

CSS
\0003FD
HtmlDecimal
Ͻ
HtmlHexadecimal
Ͻ
Url
%CF%BD

Code

MD5
f008d0ed9247de41ad98f5f0bd42346c
Sha1
8937cdce166e947739a2eab6eb6a7e0e2e9cad6f
Base64
z70=

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u03FD';
console.log(char);  // Output: Ͻ

Java:

char c = '\u03FD';
System.out.println(c);  // Output: Ͻ

JSON:

{"text": "\u03FD"}  // Value: Ͻ

Python:

char = '\u03FD'
print(char)  # Output: Ͻ

Perl:

my $char = "\x{03FD}";
print $char;  # Output: Ͻ

PHP:

$char = "\x{03FD}";
echo $char;  // Output: Ͻ

Ruby:

char = "\u{03FD}"
puts char  # Output: Ͻ

Rust:

let c = '\u{3FD}';
println!("{}", c);  // Output: Ͻ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0003FD";  /* Display: Ͻ */
}

HTML Decimal:

<p>HTML decimal: &#1021;</p>  <!-- Display: Ͻ -->

HTML Hexadecimal:

<p>HTML hex: &#x03FD;</p>  <!-- Display: Ͻ -->

URL Encoding:

// Ͻ URL encoding
https://unicodefinder.com/search.php?query=%CF%BD

Encodings

MD5:

f008d0ed9247de41ad98f5f0bd42346c

SHA1:

8937cdce166e947739a2eab6eb6a7e0e2e9cad6f

Base64:

z70=