Unicode Finder

"ῥ" U+1FE5(GREEK SMALL LETTER RHO WITH DASIA)

U+1FE5
Tên Khối
Greek Extended
Tên
GREEK SMALL LETTER RHO WITH DASIA

Programming

C
\u1FE5
JavaScript
\u1FE5
Java
\u1FE5
Json
\u1FE5
Python
\u1FE5
Perl
\x{1FE5}
PHP
\x{1FE5}
Ruby
\u{1FE5}
Rust
\u{1FE5}
Go
\u1FE5

Web

CSS
\001FE5
HtmlDecimal
ῥ
HtmlHexadecimal
ῥ
Url
%E1%BF%A5

Code

MD5
5df430fe334cff1c439a558c6a9feccd
Sha1
bc69bd17e0d8adbf56fb3b3853d7b74612da73aa
Base64
4b+l

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1FE5';
console.log(char);  // Output: ῥ

Java:

char c = '\u1FE5';
System.out.println(c);  // Output: ῥ

JSON:

{"text": "\u1FE5"}  // Value: ῥ

Python:

char = '\u1FE5'
print(char)  # Output: ῥ

Perl:

my $char = "\x{1FE5}";
print $char;  # Output: ῥ

PHP:

$char = "\x{1FE5}";
echo $char;  // Output: ῥ

Ruby:

char = "\u{1FE5}"
puts char  # Output: ῥ

Rust:

let c = '\u{1FE5}';
println!("{}", c);  // Output: ῥ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001FE5";  /* Display: ῥ */
}

HTML Decimal:

<p>HTML decimal: &#8165;</p>  <!-- Display: ῥ -->

HTML Hexadecimal:

<p>HTML hex: &#x1FE5;</p>  <!-- Display: ῥ -->

URL Encoding:

// ῥ URL encoding
https://unicodefinder.com/search.php?query=%E1%BF%A5

Encodings

MD5:

5df430fe334cff1c439a558c6a9feccd

SHA1:

bc69bd17e0d8adbf56fb3b3853d7b74612da73aa

Base64:

4b+l