Unicode Finder

"ἱ" U+1F31(GREEK SMALL LETTER IOTA WITH DASIA)

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

Programming

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

Web

CSS
\001F31
HtmlDecimal
ἱ
HtmlHexadecimal
ἱ
Url
%E1%BC%B1

Code

MD5
aed3fab2931a1c35eb99c1f3ea138fd0
Sha1
995e7f0d91f282e5f19f798840e26e97783ccb83
Base64
4byx

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F31';
console.log(char);  // Output: ἱ

Java:

char c = '\u1F31';
System.out.println(c);  // Output: ἱ

JSON:

{"text": "\u1F31"}  // Value: ἱ

Python:

char = '\u1F31'
print(char)  # Output: ἱ

Perl:

my $char = "\x{1F31}";
print $char;  # Output: ἱ

PHP:

$char = "\x{1F31}";
echo $char;  // Output: ἱ

Ruby:

char = "\u{1F31}"
puts char  # Output: ἱ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7985;</p>  <!-- Display: ἱ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F31;</p>  <!-- Display: ἱ -->

URL Encoding:

// ἱ URL encoding
https://unicodefinder.com/search.php?query=%E1%BC%B1

Encodings

MD5:

aed3fab2931a1c35eb99c1f3ea138fd0

SHA1:

995e7f0d91f282e5f19f798840e26e97783ccb83

Base64:

4byx