Unicode Finder

"ᄨ" U+1128(HANGUL CHOSEONG PIEUP-CHIEUCH)

U+1128
بلاک کا نام
Hangul Jamo
نام
HANGUL CHOSEONG PIEUP-CHIEUCH

Programming

C
\u1128
JavaScript
\u1128
Java
\u1128
Json
\u1128
Python
\u1128
Perl
\x{1128}
PHP
\x{1128}
Ruby
\u{1128}
Rust
\u{1128}
Go
\u1128

Web

CSS
\001128
HtmlDecimal
ᄨ
HtmlHexadecimal
ᄨ
Url
%E1%84%A8

Code

MD5
c464372be4ef9536edf5788c0e85d10f
Sha1
f50756abfcd02733929ece0521fdf2323927f089
Base64
4YSo

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

Programming Languages

C:

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

JavaScript:

const char = '\u1128';
console.log(char);  // Output: ᄨ

Java:

char c = '\u1128';
System.out.println(c);  // Output: ᄨ

JSON:

{"text": "\u1128"}  // Value: ᄨ

Python:

char = '\u1128'
print(char)  # Output: ᄨ

Perl:

my $char = "\x{1128}";
print $char;  # Output: ᄨ

PHP:

$char = "\x{1128}";
echo $char;  // Output: ᄨ

Ruby:

char = "\u{1128}"
puts char  # Output: ᄨ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001128";  /* Display: ᄨ */
}

HTML Decimal:

<p>HTML decimal: &#4392;</p>  <!-- Display: ᄨ -->

HTML Hexadecimal:

<p>HTML hex: &#x1128;</p>  <!-- Display: ᄨ -->

URL Encoding:

// ᄨ URL encoding
https://unicodefinder.com/search.php?query=%E1%84%A8

Encodings

MD5:

c464372be4ef9536edf5788c0e85d10f

SHA1:

f50756abfcd02733929ece0521fdf2323927f089

Base64:

4YSo