Unicode Finder

"ᆉ" U+1189(HANGUL JUNGSEONG U-A)

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

Programming

C
\u1189
JavaScript
\u1189
Java
\u1189
Json
\u1189
Python
\u1189
Perl
\x{1189}
PHP
\x{1189}
Ruby
\u{1189}
Rust
\u{1189}
Go
\u1189

Web

CSS
\001189
HtmlDecimal
ᆉ
HtmlHexadecimal
ᆉ
Url
%E1%86%89

Code

MD5
0f3072397eb5f5fd61c357046a46958c
Sha1
e8547cdae125e0738909a3e050480fa9d962b4c5
Base64
4YaJ

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

Programming Languages

C:

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

JavaScript:

const char = '\u1189';
console.log(char);  // Output: ᆉ

Java:

char c = '\u1189';
System.out.println(c);  // Output: ᆉ

JSON:

{"text": "\u1189"}  // Value: ᆉ

Python:

char = '\u1189'
print(char)  # Output: ᆉ

Perl:

my $char = "\x{1189}";
print $char;  # Output: ᆉ

PHP:

$char = "\x{1189}";
echo $char;  // Output: ᆉ

Ruby:

char = "\u{1189}"
puts char  # Output: ᆉ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001189";  /* Display: ᆉ */
}

HTML Decimal:

<p>HTML decimal: &#4489;</p>  <!-- Display: ᆉ -->

HTML Hexadecimal:

<p>HTML hex: &#x1189;</p>  <!-- Display: ᆉ -->

URL Encoding:

// ᆉ URL encoding
https://unicodefinder.com/search.php?query=%E1%86%89

Encodings

MD5:

0f3072397eb5f5fd61c357046a46958c

SHA1:

e8547cdae125e0738909a3e050480fa9d962b4c5

Base64:

4YaJ