Unicode Finder

"Ϗ" U+03CF(GREEK CAPITAL KAI SYMBOL)

Ϗ
U+03CF
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK CAPITAL KAI SYMBOL

Programming

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

Web

CSS
\0003CF
HtmlDecimal
Ϗ
HtmlHexadecimal
Ϗ
Url
%CF%8F

Code

MD5
c556177f6af21b5442fc39831c2cc5fa
Sha1
a1653e5c70bf598f7d41f79204b1e9a14471d0fe
Base64
z48=

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

Programming Languages

C:

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

JavaScript:

const char = '\u03CF';
console.log(char);  // Output: Ϗ

Java:

char c = '\u03CF';
System.out.println(c);  // Output: Ϗ

JSON:

{"text": "\u03CF"}  // Value: Ϗ

Python:

char = '\u03CF'
print(char)  # Output: Ϗ

Perl:

my $char = "\x{03CF}";
print $char;  # Output: Ϗ

PHP:

$char = "\x{03CF}";
echo $char;  // Output: Ϗ

Ruby:

char = "\u{03CF}"
puts char  # Output: Ϗ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#975;</p>  <!-- Display: Ϗ -->

HTML Hexadecimal:

<p>HTML hex: &#x03CF;</p>  <!-- Display: Ϗ -->

URL Encoding:

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

Encodings

MD5:

c556177f6af21b5442fc39831c2cc5fa

SHA1:

a1653e5c70bf598f7d41f79204b1e9a14471d0fe

Base64:

z48=