Unicode Finder

"φ" U+03C6(GREEK SMALL LETTER PHI)

φ
U+03C6
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK SMALL LETTER PHI

Programming

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

Web

CSS
\0003C6
HtmlDecimal
φ
HtmlHexadecimal
φ
Url
%CF%86

Code

MD5
7f48d4a68765673379b41e1b1ee20edf
Sha1
f822b43cf9a330e564a7f95f1fa476a222c9836f
Base64
z4Y=

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

Programming Languages

C:

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

JavaScript:

const char = '\u03C6';
console.log(char);  // Output: φ

Java:

char c = '\u03C6';
System.out.println(c);  // Output: φ

JSON:

{"text": "\u03C6"}  // Value: φ

Python:

char = '\u03C6'
print(char)  # Output: φ

Perl:

my $char = "\x{03C6}";
print $char;  # Output: φ

PHP:

$char = "\x{03C6}";
echo $char;  // Output: φ

Ruby:

char = "\u{03C6}"
puts char  # Output: φ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#966;</p>  <!-- Display: φ -->

HTML Hexadecimal:

<p>HTML hex: &#x03C6;</p>  <!-- Display: φ -->

URL Encoding:

// φ URL encoding
https://unicodefinder.com/search.php?query=%CF%86

Encodings

MD5:

7f48d4a68765673379b41e1b1ee20edf

SHA1:

f822b43cf9a330e564a7f95f1fa476a222c9836f

Base64:

z4Y=