Unicode Finder

"ς" U+03C2(GREEK SMALL LETTER FINAL SIGMA)

ς
U+03C2
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK SMALL LETTER FINAL SIGMA

Programming

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

Web

CSS
\0003C2
HtmlDecimal
ς
HtmlHexadecimal
ς
Url
%CF%82

Code

MD5
a6db33b476ff58d692ba3954759025ff
Sha1
27c1ba75d5ef672805dd09e1538f63fbcbc0b209
Base64
z4I=

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

Programming Languages

C:

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

JavaScript:

const char = '\u03C2';
console.log(char);  // Output: ς

Java:

char c = '\u03C2';
System.out.println(c);  // Output: ς

JSON:

{"text": "\u03C2"}  // Value: ς

Python:

char = '\u03C2'
print(char)  # Output: ς

Perl:

my $char = "\x{03C2}";
print $char;  # Output: ς

PHP:

$char = "\x{03C2}";
echo $char;  // Output: ς

Ruby:

char = "\u{03C2}"
puts char  # Output: ς

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#962;</p>  <!-- Display: ς -->

HTML Hexadecimal:

<p>HTML hex: &#x03C2;</p>  <!-- Display: ς -->

URL Encoding:

// ς URL encoding
https://unicodefinder.com/search.php?query=%CF%82

Encodings

MD5:

a6db33b476ff58d692ba3954759025ff

SHA1:

27c1ba75d5ef672805dd09e1538f63fbcbc0b209

Base64:

z4I=