Unicode Finder

"π" U+03C0(GREEK SMALL LETTER PI)

π
U+03C0
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK SMALL LETTER PI

Programming

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

Web

CSS
\0003C0
HtmlDecimal
π
HtmlHexadecimal
π
Url
%CF%80

Code

MD5
31bf0b12546409e15021243132fc7574
Sha1
cf017ae79936db54246c0e2f3360ba59bbd36308
Base64
z4A=

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

Programming Languages

C:

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

JavaScript:

const char = '\u03C0';
console.log(char);  // Output: π

Java:

char c = '\u03C0';
System.out.println(c);  // Output: π

JSON:

{"text": "\u03C0"}  // Value: π

Python:

char = '\u03C0'
print(char)  # Output: π

Perl:

my $char = "\x{03C0}";
print $char;  # Output: π

PHP:

$char = "\x{03C0}";
echo $char;  // Output: π

Ruby:

char = "\u{03C0}"
puts char  # Output: π

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#960;</p>  <!-- Display: π -->

HTML Hexadecimal:

<p>HTML hex: &#x03C0;</p>  <!-- Display: π -->

URL Encoding:

// π URL encoding
https://unicodefinder.com/search.php?query=%CF%80

Encodings

MD5:

31bf0b12546409e15021243132fc7574

SHA1:

cf017ae79936db54246c0e2f3360ba59bbd36308

Base64:

z4A=