Unicode Finder

"ώ" U+03CE(GREEK SMALL LETTER OMEGA WITH TONOS)

ώ
U+03CE
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK SMALL LETTER OMEGA WITH TONOS

Programming

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

Web

CSS
\0003CE
HtmlDecimal
ώ
HtmlHexadecimal
ώ
Url
%CF%8E

Code

MD5
e812c6eeea809e876f5457177937c4ee
Sha1
4454269f367d185143fdc418d61b617b048e32e8
Base64
z44=

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

Programming Languages

C:

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

JavaScript:

const char = '\u03CE';
console.log(char);  // Output: ώ

Java:

char c = '\u03CE';
System.out.println(c);  // Output: ώ

JSON:

{"text": "\u03CE"}  // Value: ώ

Python:

char = '\u03CE'
print(char)  # Output: ώ

Perl:

my $char = "\x{03CE}";
print $char;  # Output: ώ

PHP:

$char = "\x{03CE}";
echo $char;  // Output: ώ

Ruby:

char = "\u{03CE}"
puts char  # Output: ώ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#974;</p>  <!-- Display: ώ -->

HTML Hexadecimal:

<p>HTML hex: &#x03CE;</p>  <!-- Display: ώ -->

URL Encoding:

// ώ URL encoding
https://unicodefinder.com/search.php?query=%CF%8E

Encodings

MD5:

e812c6eeea809e876f5457177937c4ee

SHA1:

4454269f367d185143fdc418d61b617b048e32e8

Base64:

z44=