Unicode Finder

"ῒ" U+1FD2(GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA)

U+1FD2
Tên Khối
Greek Extended
Tên
GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA

Programming

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

Web

CSS
\001FD2
HtmlDecimal
ῒ
HtmlHexadecimal
ῒ
Url
%E1%BF%92

Code

MD5
e9fb6e0bcdb1dd7d5e81d0a97f2183f0
Sha1
c35653a4dd4e60c999cffa2d98cfdd4afa1588fe
Base64
4b+S

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1FD2';
console.log(char);  // Output: ῒ

Java:

char c = '\u1FD2';
System.out.println(c);  // Output: ῒ

JSON:

{"text": "\u1FD2"}  // Value: ῒ

Python:

char = '\u1FD2'
print(char)  # Output: ῒ

Perl:

my $char = "\x{1FD2}";
print $char;  # Output: ῒ

PHP:

$char = "\x{1FD2}";
echo $char;  // Output: ῒ

Ruby:

char = "\u{1FD2}"
puts char  # Output: ῒ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#8146;</p>  <!-- Display: ῒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1FD2;</p>  <!-- Display: ῒ -->

URL Encoding:

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

Encodings

MD5:

e9fb6e0bcdb1dd7d5e81d0a97f2183f0

SHA1:

c35653a4dd4e60c999cffa2d98cfdd4afa1588fe

Base64:

4b+S