31 December 2013

How to open On-Screen Keyboard in Windows XP

Problem: Sometimes the keyboard starts giving fault and some key does not work.
Solution: We can use on-screen keyboard with mouse click on it, the letters will be typed.

(If you found this article useful then share with your friends.)

Open multiple link from single HTML link tag

javascript
Trick: You can open multiple links by single clicking the <a> tag (defines an anchor) using javascript code inside HTML. It is very simple. just include onclick() function and write inline javascript in its attribute.

(If you found this article useful then share with your friends.)

How to Repair Incorrect Thumbnail for Image Files in Windows XP

thumbs.dbProblem : Sometimes , the thumbnails of picture files get damaged and it shows a false thumbnail which is not the correct thumbnail of that image. This happens due to corrupt of thumbnail file management in windows XP.


(If you found this article useful then share with your friends.)

24 December 2013

Convert HTML code to show in post

Using HTML encoder Tool , you can show the code snippet inside a post .

For example: If you like to show a code snippet in a post, just copy the code and paste inside the text box in visual mode / Compose mode depending on your editor.

(If you found this article useful then share with your friends.)

VFK45DVS3NKP

VFK45DVS3NKP

(If you found this article useful then share with your friends.)

21 December 2013

HTML encoder tool

Write your code you like to show in your post :

HTML Encoder:




(If you found this article useful then share with your friends.)

18 December 2013

How to create Custom url Permalink in Wordpress

Every post you create gets an id and the link is shown with that id. But it looks very bad if you blog more and even it is hard to remember the numbers for every post id.

So to make it look better url to remember and also for bookmarking and SEO purpose, you need to change the Permalink Settings .

To change the Permalink Settings to Custom / Friendly url :

1. Go to your wordpress admin panel ( /wp-admin)
2. On left side bar , look for Settings -> Permalinks

Choose Custom Structure and on the right text box , paste the following line
/%category%/%postname%/

Click Save Changes

Done.

Look at my url of this post and think how friendly it is to understand what this post is about .

Please leave comment.

(If you found this article useful then share with your friends.)

Disable Auto Formating in Code editor in Wordpress

 PS Disable Auto Formatting
It is really annoying while writing post and after switching from html mode to visual mode , the wordpress default editor itself adds tag. A way to stop this auto-formating is to install a plugin named : PS Disable Auto Formatting  which can be found in wordpress website.

wordpressDownload PS Disable Auto Formatting v1.0.3

Steps to install this plugin:

1. Download the file.
2. Go to admin panel ( /wp-admin )
3. Look for "Plugins" on the left side menu and click it .
4. Click "Add New"
5. Select "Upload"
6. Browse the downloaded file and click "Install Now"

Done.

After that , select "Activate now" to run the plug-in.

Please Leave comment after reading.

(If you found this article useful then share with your friends.)

17 December 2013

Download HP Compaq dx2290 mt Windows XP Driver

HP Compaq dx2290MT
After looking through out the internet , i found that , there is no specific driver of HP Compaq dx2290MT for Windows XP. After experimenting with Intel Drivers , i finally got them installed in Windows XP.


Done.  

Try out yourself. Good Luck.

Check the official site of Intel Driver

(As per my configuration, i tried with Intel 945G Driver CD for Windows XP)



(If you found this article useful then share with your friends.)

15 December 2013

How to Open HyperLink Using bat File in Windows XP

windows logo
To do this work , Do the following things:

Go to Start => Run => Notepad

Write the following code in that file :

@ECHO OFF
c:
cd C:\Program Files\Internet Explorer
start iexplore.exe http://www.google.com

Save as the File and give extension .bat

For example :

batch file create a file named openGoogleIE.bat


Done .

Note:
Bat File : In DOS, OS/2, and Microsoft Windows, batch file(.bat) is the name given to a type of script file, a text file containing a series of commands to be executed by the command interpreter.


Syntax:


Start     Starts a separate window to run a specified program or command.

CD      (Change Directory) is a command used to switch directories in MS-DOS.

Echo      is used to repeat the text typed in back to the screen and can be used to echo to a peripheral on the computer, such as a COM port.

(For any question , please comment and suggest.)





(If you found this article useful then share with your friends.)

14 December 2013

How to open multiple links in iframes

In HTML , iframe tag is used as a nested browser inside a page where you can view another website without changing the page.

To open links to a targeted iframe in the same page , you need to use target attribute inside a tag .

Sample code :


<iframe height="200" name="frm" width="300"></iframe>
<br />
<a href="http://www.bdnews24.com/" target="frm">Bdnews24</a>
<br />
<a href="http://www.bangladesh-data.blogspot.com/" target="frm">Bangladesh blog</a>

Output may look like this:


iframe snapshot
snapshot



(If you found this article useful then share with your friends.)

php File Upload - Tutorial with Example

php logo
PHP: Hypertext Preprocessor,scripting language

PHP File Upload

Example HTML code for file upload:
Form_page.php
<html>
<body>

<form action="upload_file.php" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" /> 
<br />
<input type="submit" name="submit" value="Submit" />
</form>

</body>
</html>


upload_file.php [Simple Code]
<?php
if ($_FILES["file"]["error"] > 0)
  {
  echo "Error: " . $_FILES["file"]["error"] . "<br />";
  }
else
  {
  echo "Upload: " . $_FILES["file"]["name"] . "<br />";
  echo "Type: " . $_FILES["file"]["type"] . "<br />";
  echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
  echo "Stored in: " . $_FILES["file"]["tmp_name"];
  }
?>

Parameters of $_FILES
  • $_FILES["file"]["name"] - the name of the uploaded file
  • $_FILES["file"]["type"] - the type of the uploaded file
  • $_FILES["file"]["size"] - the size in bytes of the uploaded file
  • $_FILES["file"]["tmp_name"] - the name of the temporary copy of the file stored on the server
  • $_FILES["file"]["error"] - the error code resulting from the file upload

upload_file.php [Code with Restriction on Upload, store the file in php temp folder]
<?php
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 20000))
  {
  if ($_FILES["file"]["error"] > 0)
    {
    echo "Error: " . $_FILES["file"]["error"] . "<br />";
    }
  else
    {
    echo "Upload: " . $_FILES["file"]["name"] . "<br />";
    echo "Type: " . $_FILES["file"]["type"] . "<br />";
    echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
    echo "Stored in: " . $_FILES["file"]["tmp_name"];
    }
  }
else
  {
  echo "Invalid file";
  }
?>


upload_file.php [Code with Restriction on Upload, store the file in destination folder]
<?php
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 20000))
  {
  if ($_FILES["file"]["error"] > 0)
    {
    echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
    }
  else
    {
    echo "Upload: " . $_FILES["file"]["name"] . "<br />";
    echo "Type: " . $_FILES["file"]["type"] . "<br />";
    echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
    echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";

    if (file_exists("upload/" . $_FILES["file"]["name"]))
      {
      echo $_FILES["file"]["name"] . " already exists. ";
      }
    else
      {
      move_uploaded_file($_FILES["file"]["tmp_name"],
      "upload/" . $_FILES["file"]["name"]);
      echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
      }
    }
  }
else
  {
  echo "Invalid file";
  }
?>

(If you found this article useful then share with your friends.)

Login module without create account feature? [Joomla - CMS]

Problem: Login module without create account feature? [Joomla - CMS]

Solution : These are the steps to remove the Create an Account link which is part of the Login module.

Login to Administrator in your Joomla Folder

1) Goto Global Configuration

2) Click the System link

3) Under User Settings, look for Allow User Registration.

4) Select No

5) Click Save

Done.














joomla login



(If you found this article useful then share with your friends.)

Download OpenGL files


opengl
OpenGL (Open Graphics Library) is a standard specification defining a cross-language, multi-platform API for writing applications and simulating physics, that produce 2D and 3D computer graphics.

GLUT means  OpenGL Utility Toolkit . To code for OpenGL , you need to download this.

Download OpenGL files from xmission.com

After visiting the link , you will find links of zip files.
opengl logo
There are two versions: i) Library files ii)Source files

Next Tutorial :


(If you found this article useful then share with your friends.)

12 December 2013

How to Convert newline to comma from List of Words

newline to comma
Newline to Comma
Sometimes you need to find out the duplicate words written in a list of words written with newline, the easy way of converting back to comma separated sentience is to convert newline into comma or any other separator.

(If you found this article useful then share with your friends.)

How to Convert comma with newline in a Sentence

comma to newline
Comma to Newline
Sometimes you need to find out the duplicate words written in the comma seperated sentence, the easy way of finding is just convert the words seperated by newline.

(If you found this article useful then share with your friends.)

11 December 2013

Nokia Phone Quality Check with code


Nokia logo
To check IMEI, dial *#06#

Check the 7th and 8th numbers to know its origin of manufacture/assemble:

You can also get to see IMEI code printed outside the retail box of your phone. So you can easily check the 7th and 8th from the packet and know about its origin.

=========  1  2  3  4  5  6   7   8  9  10  11  12  13  14  15
Phone serial no.  x  x  x  x  x  x   ?   ?   x   x    x    x    x    x    x

IF the Seventh & Eighth digits are 00 this means your cell phone was
manufactured in original factory which is the best Mobile Quality

IF the Seventh & Eighth digits are 01 or 10 this means your cell phone was
manufactured in Finland which is very Good quality

IF the Seventh & Eighth digits are 02 or 20 this means your cell phone was
assembled in Emirates/UAE which is poor quality



IF the Seventh & Eighth digits are 03 or 30 this means your cell phone was
assembled in Germany which is fair quality

IF the Seventh & Eighth digits are 04 or 40 this means your cell phone was
assembled in China which is good quality but not good compare to 01 or 10

IF the Seventh & Eighth digits are 05 or 50 this means your cell phone was
assembled in Brazil / USA / Finland which is better quality

IF the Seventh & Eighth digits are 06 or 60 this means your cell phone was
assembled in Hong Kong / Mexico which is good quality


IF the Seventh & Eighth digits are 08 or 80 this means your cell phone was
manufactured in Hungary which is fair quality


IF the Seventh & Eighth digits are 13 this means your cell phone was
assembled in Azerbaijan which is very Bad quality and also dangerous for
your health.

Validate your IMEI number to be Genuine or Fake from this link: IMEI checker



(If you found this article useful then share with your friends.)

How to decode JSON using PHP5 for Facebook application

json facebook
The new Graph API helps to read and write data to Facebook. Every object in the social graph has a unique ID. You can fetch the data associated with an object by fetching https://graph.facebook.com/ID. For example, the official page for the Facebook Platform has id 19292868552, so you can fetch the object at https://graph.facebook.com/19292868552 All responses are JSON objects. Here is the code to decode JSON OBJECT / to get data from the graph api link . 

Code Sample : //FETCHING THE JSON FROM THE URL

$jsonurl = "https://graph.facebook.com/". $user_id; $json = file_get_contents($jsonurl,0,null,null); $json_output = json_decode($json);

// THIS PRINTS THE WHOLE STRING OF JSON

var_dump( json_decode( $json,true)) ;

// ITS SAME AS YOU ARE USING it as an object

$user_firstName = $json_output->first_name;

//PRINTS THE FIRST NAME OF THE LOGGED IN USER

echo $user_firstName ;

You can also directly use the graph api for showing the profile picture. For example :
<img src="https://graph.facebook.com/<?= $user ?>/picture"/>

Link :

  Graph API Facebook Documentation

(If you found this article useful then share with your friends.)

How to get Latitude Longitude tooltip in Google map

To get the values of latitude and longitude, you can easily find it from google maps and activate an option which will get a tooltip where it will display the values at your mouse point.

Follow the steps below to get the values:


1. Visit Google Maps  and login to your gmail account.

2. On the upper right corner, select the green flask icon Google Experiment.

3. Look for LatLng Tooltip and select enable option .

latlng tooltip

4. Click Save Changes .

The result will be like the image below .

google lat lon tooltip

Done.

(If you found this article useful then share with your friends.)

BFS Graph implemented in C

BFS Graph
Breadth First Search Graph
Read below about BFS Graph implementation in C.( Breadth First Search )

Problem : Show minimum cost path from source to destination using BFS at source. Solution in C Language given below:

(If you found this article useful then share with your friends.)

08 December 2013

Understanding the Tween class in Flash 8 ActionScript 2

The Tween class lets you move, resize, rotate, or fade a movieclip using only ActionScript. You can animate any property of a movieclip, such as x, y, rotation, scaleX, scaleY, and alpha. You can also specify how long the animation will last in either seconds or frames. 

(If you found this article useful then share with your friends.)

[Solution] Takes Longer time to open Photo from Desktop

Problem : When I click an image photo from desktop then it takes longer time to show it. Why it takes time to open a photo from desktop ?  How to see them faster ?

Reason : The reason i found is , if there is any dead link or invalid link in desktop then it gets trouble to create thumbnails for photo slide shows.

Solution : find invalid dead links from desktop and delete it. You can manually find them or use CCleaner to clear Desktop shortcuts.
Snapshot Image of Photo loading
Photo loading


(If you found this article useful then share with your friends.)

05 December 2013

Nokia Symbian 60 series Product Line


symbian logo

nokia logoSymbian is a mobile operating system (OS) and computing platform designed for smartphones and currently maintained by Accenture. The Symbian platform is the successor to Symbian OS and Nokia Series 60; unlike Symbian OS, which needed an additional user interface system, Symbian includes a user interface component based on S60 5th Edition. The latest version, Symbian^3, was officially released in Q4 2010, first used in the Nokia N8.

[for more information, visit : http://en.wikipedia.org/wiki/Symbian ]



(If you found this article useful then share with your friends.)

03 December 2013

What Database to use for Flex Standalone Application

Adobe Air helps to provide a platform for running a flex project as desktop application.
flex
There are some database that are good for flex desktop application.


(If you found this article useful then share with your friends.)

Zend Framework hello world Tutorial

Zend Framework hello world
This is a compact tutorial on Zend Framework hello world.

If you like to know more , then read the Zend Framework Documentation.

First, you need to download Zend framework from below links.
or visit: framework.zend.com


After Download , unzip the file and place inside your host / locahost .

Open the php.ini file .

Add the include path of library folder of zend like this :

include_path = "/ZendFramework-1.11.0-minimal/library"


edit php.ini


Create a project name as "MyWebsite" and copy the library folder from zend.
folder tree
- Folder Tree -











Detailed folder Structure :




MyWebsite
|_applications
| |_config
| |_models
| |_modules
|   |_public
|     |_controllers
|     | |_IndexController.php
|     |
|     |_views
|       |_scripts
|       | |_index
|       |   |_index.phtml
|
|_library
| |_Zend
|
|_.htaccess
|_index.php
|




Done.




Download : MyWebsite.zip and unzip it in your host/localhost
It includes zend library , and index page.


If any problem , comment below.



(If you found this article useful then share with your friends.)

How to Add Javac to Compile Java code in Windows

java logo

To compile java code in command promt , you need to register the java variable to the windows Environment variable .

Follow the step below :


(If you found this article useful then share with your friends.)

How to create Joomla templates - hello world

To create your own template for Joomla CMS , you need to follow some directory structure and file names. The template should have at least this 2 files : templateDetails.xml and index.php
joomla

You need to create a folder and the files inside it. Place this folder under templates folder inside the joomla folder.

To set your template , go to Extensions -> template manager.
Choose your template name from the list and click default to make effected.

The file structure of the templateDetails.xml :

<?xml version="1.0" encoding="utf-8"?>
<install version="1.5" type="template">
<name>My First J template</name>
<description>
This is my Template
</description>
<files>
<filename>index.php</filename>
<filename>templateDetails.xml</filename>
</files>
</install>

Sample index.php file :

<html>
<head>
<jdoc:include type="head" />
</head>
<body>
<jdoc:include type="message" />
<div class="center" align="center">Welcome to my World! Lets have some fun</div>
<jdoc:include type="modules" name="debug" />
</body>
</html>

Done.

(If you found this article useful then share with your friends.)

Bangla ASCII hexadecimal code Unicode


bangla ascii


ASCII stands for American Standard Code for Information Interchange. It reserves the first 32 codes (numbers 0–31 decimal) for control characters: codes originally intended not to represent printable information, but rather to control devices (such as printers) that make use of ASCII, or to provide meta-information about data streams such as those stored on magnetic tape.
bangla chartUnicode Range for Bengali is 0981 - 09FA
Total 89 Character .

To use the codes, use Font:Arial to view. Unicode characters from U+0980 to U+09FF

Bangla ASCII codes:Name Chart
Number Entity (hex) Entity (decimal) Character Description
U+0981 &#x0981; &#2433; BENGALI SIGN CANDRABINDU
U+0982 &#x0982; &#2434; BENGALI SIGN ANUSVARA
U+0983 &#x0983; &#2435; BENGALI SIGN VISARGA
U+0985 &#x0985; &#2437; BENGALI LETTER A
U+0986 &#x0986; &#2438; BENGALI LETTER AA
U+0987 &#x0987; &#2439; BENGALI LETTER I
U+0988 &#x0988; &#2440; BENGALI LETTER II
U+0989 &#x0989; &#2441; BENGALI LETTER U
U+098A &#x098A; &#2442; BENGALI LETTER UU
U+098B &#x098B; &#2443; BENGALI LETTER VOCALIC R
U+098C &#x098C; &#2444; BENGALI LETTER VOCALIC L
U+098F &#x098F; &#2447; BENGALI LETTER E
U+0990 &#x0990; &#2448; BENGALI LETTER AI
U+0993 &#x0993; &#2451; BENGALI LETTER O
U+0994 &#x0994; &#2452; BENGALI LETTER AU
U+0995 &#x0995; &#2453; BENGALI LETTER KA
U+0996 &#x0996; &#2454; BENGALI LETTER KHA
U+0997 &#x0997; &#2455; BENGALI LETTER GA
U+0998 &#x0998; &#2456; BENGALI LETTER GHA
U+0999 &#x0999; &#2457; BENGALI LETTER NGA
U+099A &#x099A; &#2458; BENGALI LETTER CA
U+099B &#x099B; &#2459; BENGALI LETTER CHA
U+099C &#x099C; &#2460; BENGALI LETTER JA
U+099D &#x099D; &#2461; BENGALI LETTER JHA
U+099E &#x099E; &#2462; BENGALI LETTER NYA
U+099F &#x099F; &#2463; BENGALI LETTER TTA
U+09A0 &#x09A0; &#2464; BENGALI LETTER TTHA
U+09A1 &#x09A1; &#2465; BENGALI LETTER DDA
U+09A2 &#x09A2; &#2466; BENGALI LETTER DDHA
U+09A3 &#x09A3; &#2467; BENGALI LETTER NNA
U+09A4 &#x09A4; &#2468; BENGALI LETTER TA
U+09A5 &#x09A5; &#2469; BENGALI LETTER THA
U+09A6 &#x09A6; &#2470; BENGALI LETTER DA
U+09A7 &#x09A7; &#2471; BENGALI LETTER DHA
U+09A8 &#x09A8; &#2472; BENGALI LETTER NA
U+09AA &#x09AA; &#2474; BENGALI LETTER PA
U+09AB &#x09AB; &#2475; BENGALI LETTER PHA
U+09AC &#x09AC; &#2476; BENGALI LETTER BA
U+09AD &#x09AD; &#2477; BENGALI LETTER BHA
U+09AE &#x09AE; &#2478; BENGALI LETTER MA
U+09AF &#x09AF; &#2479; BENGALI LETTER YA
U+09B0 &#x09B0; &#2480; BENGALI LETTER RA
U+09B2 &#x09B2; &#2482; BENGALI LETTER LA
U+09B6 &#x09B6; &#2486; BENGALI LETTER SHA
U+09B7 &#x09B7; &#2487; BENGALI LETTER SSA
U+09B8 &#x09B8; &#2488; BENGALI LETTER SA
U+09B9 &#x09B9; &#2489; BENGALI LETTER HA
U+09BC &#x09BC; &#2492; BENGALI SIGN NUKTA
U+09BE &#x09BE; &#2494; BENGALI VOWEL SIGN AA
U+09BF &#x09BF; &#2495; ি BENGALI VOWEL SIGN I
U+09C0 &#x09C0; &#2496; BENGALI VOWEL SIGN II
U+09C1 &#x09C1; &#2497; BENGALI VOWEL SIGN U
U+09C2 &#x09C2; &#2498; BENGALI VOWEL SIGN UU
U+09C3 &#x09C3; &#2499; BENGALI VOWEL SIGN VOCALIC R
U+09C4 &#x09C4; &#2500; BENGALI VOWEL SIGN VOCALIC RR
U+09C7 &#x09C7; &#2503; BENGALI VOWEL SIGN E
U+09C8 &#x09C8; &#2504; BENGALI VOWEL SIGN AI
U+09CB &#x09CB; &#2507; BENGALI VOWEL SIGN O
U+09CC &#x09CC; &#2508; BENGALI VOWEL SIGN AU
U+09CD &#x09CD; &#2509; BENGALI SIGN VIRAMA
U+09D7 &#x09D7; &#2519; BENGALI AU LENGTH MARK
U+09DC &#x09DC; &#2524; ড় BENGALI LETTER RRA
U+09DD &#x09DD; &#2525; ঢ় BENGALI LETTER RHA
U+09DF &#x09DF; &#2527; য় BENGALI LETTER YYA
U+09E0 &#x09E0; &#2528; BENGALI LETTER VOCALIC RR
U+09E1 &#x09E1; &#2529; BENGALI LETTER VOCALIC LL
U+09E2 &#x09E2; &#2530; BENGALI VOWEL SIGN VOCALIC L
U+09E3 &#x09E3; &#2531; BENGALI VOWEL SIGN VOCALIC LL
U+09E6 &#x09E6; &#2534; BENGALI DIGIT ZERO
U+09E7 &#x09E7; &#2535; BENGALI DIGIT ONE
U+09E8 &#x09E8; &#2536; BENGALI DIGIT TWO
U+09E9 &#x09E9; &#2537; BENGALI DIGIT THREE
U+09EA &#x09EA; &#2538; BENGALI DIGIT FOUR
U+09EB &#x09EB; &#2539; BENGALI DIGIT FIVE
U+09EC &#x09EC; &#2540; BENGALI DIGIT SIX
U+09ED &#x09ED; &#2541; BENGALI DIGIT SEVEN
U+09EE &#x09EE; &#2542; BENGALI DIGIT EIGHT
U+09EF &#x09EF; &#2543; BENGALI DIGIT NINE
U+09F0 &#x09F0; &#2544; BENGALI LETTER RA WITH MIDDLE DIAGONAL
U+09F1 &#x09F1; &#2545; BENGALI LETTER RA WITH LOWER DIAGONAL
U+09F2 &#x09F2; &#2546; BENGALI RUPEE MARK
U+09F3 &#x09F3; &#2547; BENGALI RUPEE SIGN
U+09F4 &#x09F4; &#2548; BENGALI CURRENCY NUMERATOR ONE
U+09F5 &#x09F5; &#2549; BENGALI CURRENCY NUMERATOR TWO
U+09F6 &#x09F6; &#2550; BENGALI CURRENCY NUMERATOR THREE
U+09F7 &#x09F7; &#2551; BENGALI CURRENCY NUMERATOR FOUR
U+09F8 &#x09F8; &#2552; BENGALI CURRENCY NUMERATOR ONE LESS THAN THE DENOMINATOR
U+09F9 &#x09F9; &#2553; BENGALI CURRENCY DENOMINATOR SIXTEEN
U+09FA &#x09FA; &#2554; BENGALI ISSHAR


Sample use(input):

Hexadecimal

&#x0986;&#x09AE;&#x09BE;&#x09B0; &#x09A8;&#x09BE;&#x09AE;&#x09C7; &#x099C;&#x09BE;&#x09B9;&#x09BF;&#x09A6;

JavaScript escapes:

\u0986\u09AE\u09BE\u09B0 \u09A8\u09BE\u09AE\u09C7 \u099C\u09BE\u09B9\u09BF\u09A6

Output

আমার নামে জাহিদ

How the code seen in HTML code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled 1</title>
</head>

<body>
&#x0986;&#x09AE;&#x09BE;&#x09B0; &#x09A8;&#x09BE;&#x09AE;&#x09C7; &#x099C;&#x09BE;&#x09B9;&#x09BF;&#x09A6;
<br/>
<script>
document.write("\u0986\u09AE\u09BE\u09B0 \u09A8\u09BE\u09AE\u09C7 \u099C\u09BE\u09B9\u09BF\u09A6 ");
</script>
</body>
</html>



(If you found this article useful then share with your friends.)