How to use Bangladesh Currency into Font-Awesome icon [closed] - html

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
Could someone please tell me what unicode and or HTML-escape code the bangladesh currency(৳) has?

This sign is currently unavailable in font awesome. However, you can use any of these codes below to get the symbol in your code. I know it's not a perfect answer, but I hope it helps!
BENGALI RUPEE SIGN ৳
UNICODE:
U+009F3
HEX CODE:
৳
HTML CODE:
৳
(source: https://www.toptal.com/designers/htmlarrows/currency/)

Related

How to edit .bin disc image files? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I want to edit bin disc image before burning to disc please help me. I tried using Winrar and 7zip but it didn't work.
You can also try ghex2 GNOME utilities. This give you the automated hex-to-ASCII on the side, as well as the various character/integer decodes at the bottom.

Is it possible to collapse a text using HTML only? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
Is it possible in HTML only? I saw with CSS but my environment doesn't cater CSS. Please help. Thanks!
Yes, it is possible using the HTML Details Element <details>:
<details>
<summary>Summary</summary>
<p>Detailed content goes here …</p>
</details>
Check browser support.

Language detection using tesseract or abby ocr [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have images of document containing either arabic or english text as image is it possible somehow to know what language out of this two an image contain
Yes, it is possible. You set two possible recognition languages ("English", "Arabic"), then do OCR and check the recognized text character set. Latinic alphabet will indicate English.

How can I develop this graphic? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I need some advice from you on how to develop a website with this menu. Tips? I tried with div and img, but it's too messed up.
Thank you in advance
Web site from the graph
Have a look on the CSS manipulations with shadows : https://css-tricks.com/almanac/properties/b/box-shadow/
You can also build more advanced structures like this 3D boxes: http://tympanus.net/codrops/2013/08/27/3d-shading-with-box-shadows/

How to make user able to introduce block quotes like stack overflow? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
How can I make a user introduce blockquotes or bold text by himself like stack overflow ? and how does stack overflow change blockquotes to '>' ?
You have to use a Markdown to HTML converter. Probably the best for you would be a Javascript converter. Look at this link for the Showdown Converter.