Unicode Finder

"ξ" U+03BE(GREEK SMALL LETTER XI)

ξ
U+03BE
Όνομα Μπλοκ
Greek and Coptic
Όνομα
GREEK SMALL LETTER XI

Programming

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

Web

CSS
\0003BE
HtmlDecimal
ξ
HtmlHexadecimal
ξ
Url
%CE%BE

Code

MD5
8b8bf6c426eb40b0d06df646f36a4ae3
Sha1
2213b1a61eea188a75a3dfa326e949a72aae47e6
Base64
zr4=

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

Programming Languages

C:

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

JavaScript:

const char = '\u03BE';
console.log(char);  // Output: ξ

Java:

char c = '\u03BE';
System.out.println(c);  // Output: ξ

JSON:

{"text": "\u03BE"}  // Value: ξ

Python:

char = '\u03BE'
print(char)  # Output: ξ

Perl:

my $char = "\x{03BE}";
print $char;  # Output: ξ

PHP:

$char = "\x{03BE}";
echo $char;  // Output: ξ

Ruby:

char = "\u{03BE}"
puts char  # Output: ξ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#958;</p>  <!-- Display: ξ -->

HTML Hexadecimal:

<p>HTML hex: &#x03BE;</p>  <!-- Display: ξ -->

URL Encoding:

// ξ URL encoding
https://unicodefinder.com/search.php?query=%CE%BE

Encodings

MD5:

8b8bf6c426eb40b0d06df646f36a4ae3

SHA1:

2213b1a61eea188a75a3dfa326e949a72aae47e6

Base64:

zr4=