1

I visited some site and I noticed that the html its seem as encoded, like an hex character.

<meta name="description" content="&#x5d4;&#x5d9;&#x5e8;&#x5e9;&#x5dd;/&#x5d4;&#x5d9;&#/>

What is this and what for?

how can I do this in my HTML also ?

Cœur
  • 37,241
  • 25
  • 195
  • 267
david2000
  • 59
  • 8

1 Answers1

0

It's not encryption. It's just HTML special symbols (entities). Here's a W3School page about that with their meaning.

Here's a site to decode and encode HTML entites. So this (&#x5d4;&#x5d9;&#x5e8;&#x5e9;&#x5dd;/&#x5d4;&#x5d9;) is meaning: הירשם/הי.

u32i64
  • 2,384
  • 3
  • 22
  • 36