Unicode Finder

"ᆅ" U+1185(HANGUL JUNGSEONG YO-YAE)

U+1185
بلاک کا نام
Hangul Jamo
نام
HANGUL JUNGSEONG YO-YAE

Programming

C
\u1185
JavaScript
\u1185
Java
\u1185
Json
\u1185
Python
\u1185
Perl
\x{1185}
PHP
\x{1185}
Ruby
\u{1185}
Rust
\u{1185}
Go
\u1185

Web

CSS
\001185
HtmlDecimal
ᆅ
HtmlHexadecimal
ᆅ
Url
%E1%86%85

Code

MD5
697d434d08e0b43d6e3e23dc7c67191d
Sha1
7eb18c511abe027a931ffe23ffa61f01c703592c
Base64
4YaF

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

Programming Languages

C:

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

JavaScript:

const char = '\u1185';
console.log(char);  // Output: ᆅ

Java:

char c = '\u1185';
System.out.println(c);  // Output: ᆅ

JSON:

{"text": "\u1185"}  // Value: ᆅ

Python:

char = '\u1185'
print(char)  # Output: ᆅ

Perl:

my $char = "\x{1185}";
print $char;  # Output: ᆅ

PHP:

$char = "\x{1185}";
echo $char;  // Output: ᆅ

Ruby:

char = "\u{1185}"
puts char  # Output: ᆅ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001185";  /* Display: ᆅ */
}

HTML Decimal:

<p>HTML decimal: &#4485;</p>  <!-- Display: ᆅ -->

HTML Hexadecimal:

<p>HTML hex: &#x1185;</p>  <!-- Display: ᆅ -->

URL Encoding:

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

Encodings

MD5:

697d434d08e0b43d6e3e23dc7c67191d

SHA1:

7eb18c511abe027a931ffe23ffa61f01c703592c

Base64:

4YaF