Unicode Finder

"ᅷ" U+1177(HANGUL JUNGSEONG A-U)

U+1177
بلاک کا نام
Hangul Jamo
نام
HANGUL JUNGSEONG A-U

Programming

C
\u1177
JavaScript
\u1177
Java
\u1177
Json
\u1177
Python
\u1177
Perl
\x{1177}
PHP
\x{1177}
Ruby
\u{1177}
Rust
\u{1177}
Go
\u1177

Web

CSS
\001177
HtmlDecimal
ᅷ
HtmlHexadecimal
ᅷ
Url
%E1%85%B7

Code

MD5
6e1f085fe70a327087f73bf1890b519f
Sha1
f778747770f6ebf211c94bfc8f7bb531f9279bb8
Base64
4YW3

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u1177';
console.log(char);  // Output: ᅷ

Java:

char c = '\u1177';
System.out.println(c);  // Output: ᅷ

JSON:

{"text": "\u1177"}  // Value: ᅷ

Python:

char = '\u1177'
print(char)  # Output: ᅷ

Perl:

my $char = "\x{1177}";
print $char;  # Output: ᅷ

PHP:

$char = "\x{1177}";
echo $char;  // Output: ᅷ

Ruby:

char = "\u{1177}"
puts char  # Output: ᅷ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001177";  /* Display: ᅷ */
}

HTML Decimal:

<p>HTML decimal: &#4471;</p>  <!-- Display: ᅷ -->

HTML Hexadecimal:

<p>HTML hex: &#x1177;</p>  <!-- Display: ᅷ -->

URL Encoding:

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

Encodings

MD5:

6e1f085fe70a327087f73bf1890b519f

SHA1:

f778747770f6ebf211c94bfc8f7bb531f9279bb8

Base64:

4YW3