Unicode Finder

"ᅱ" U+1171(HANGUL JUNGSEONG WI)

U+1171
Nazwa Bloku
Hangul Jamo
Nazwa
HANGUL JUNGSEONG WI

Programming

C
\u1171
JavaScript
\u1171
Java
\u1171
Json
\u1171
Python
\u1171
Perl
\x{1171}
PHP
\x{1171}
Ruby
\u{1171}
Rust
\u{1171}
Go
\u1171

Web

CSS
\001171
HtmlDecimal
ᅱ
HtmlHexadecimal
ᅱ
Url
%E1%85%B1

Code

MD5
8caccec245962d15535b80cc2a787b48
Sha1
a6fb82dbdcd061be23609d2884abd8c850c841e1
Base64
4YWx

Przykłady Użycia

Programming Languages

C:

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

JavaScript:

const char = '\u1171';
console.log(char);  // Output: ᅱ

Java:

char c = '\u1171';
System.out.println(c);  // Output: ᅱ

JSON:

{"text": "\u1171"}  // Value: ᅱ

Python:

char = '\u1171'
print(char)  # Output: ᅱ

Perl:

my $char = "\x{1171}";
print $char;  # Output: ᅱ

PHP:

$char = "\x{1171}";
echo $char;  // Output: ᅱ

Ruby:

char = "\u{1171}"
puts char  # Output: ᅱ

Rust:

let c = '\u{1171}';
println!("{}", c);  // Output: ᅱ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001171";  /* Display: ᅱ */
}

HTML Decimal:

<p>HTML decimal: &#4465;</p>  <!-- Display: ᅱ -->

HTML Hexadecimal:

<p>HTML hex: &#x1171;</p>  <!-- Display: ᅱ -->

URL Encoding:

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

Encodings

MD5:

8caccec245962d15535b80cc2a787b48

SHA1:

a6fb82dbdcd061be23609d2884abd8c850c841e1

Base64:

4YWx