Unicode Finder

"ἲ" U+1F32(GREEK SMALL LETTER IOTA WITH PSILI AND VARIA)

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

Programming

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

Web

CSS
\001F32
HtmlDecimal
ἲ
HtmlHexadecimal
ἲ
Url
%E1%BC%B2

Code

MD5
eb97e26e46d1c07911e696ca51419a73
Sha1
855a0eeef1ca4df17b36b0e005c0b8f4548eb7f2
Base64
4byy

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u1F32';
console.log(char);  // Output: ἲ

Java:

char c = '\u1F32';
System.out.println(c);  // Output: ἲ

JSON:

{"text": "\u1F32"}  // Value: ἲ

Python:

char = '\u1F32'
print(char)  # Output: ἲ

Perl:

my $char = "\x{1F32}";
print $char;  # Output: ἲ

PHP:

$char = "\x{1F32}";
echo $char;  // Output: ἲ

Ruby:

char = "\u{1F32}"
puts char  # Output: ἲ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#7986;</p>  <!-- Display: ἲ -->

HTML Hexadecimal:

<p>HTML hex: &#x1F32;</p>  <!-- Display: ἲ -->

URL Encoding:

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

Encodings

MD5:

eb97e26e46d1c07911e696ca51419a73

SHA1:

855a0eeef1ca4df17b36b0e005c0b8f4548eb7f2

Base64:

4byy