"Broken Heart" Emoji

How To Get the "Broken Heart" Emoji

The 💔 Broken Heart emoji features a broken heart symbol, often used to represent heartbreak or sadness. It can be used to symbolize broken hearts, heartache, loss, or to convey a sense of emotional pain, disappointment, or the representation of a broken relationship.

Codes for the "Broken Heart" Emoji

Click on a green box to copy its contents.
Formal Name:
Broken Heart
The symbol:
💔
The Alt Code:
Alt 128148
The HTML Code:
💔
HTML Entity:
none
CSS Code:
\1F494
Hex Code:
💔
Unicode:
U+1F494
UTF-16 (for .js):
working on it...
Broken Heart emoji

Create an Image of the Emoji

Use this widget to share, copy, or download the emoji as a resizeable .png image. (If you want to copy the emoji as a character (like a special font), use the table above.)

Tip: If you need the image for WhatsApp, use the "Share" button and make sure the image is larger than 200x200, otherwise WhatsApp will resize it, making it blurry. (The bigger, the better.)

Click to resize the image.

 


Eight Ways to Insert the "Broken Heart" Emoji

(Method 1) Copy and Paste the Emoji.

Click on the 💔 emoji from the table above. Press the "Copy" button, and then paste the symbol into your document.

(Method 2) Use the "Alt Code."

The Alt Code for 💔 is Alt 128148. If you have a keyboard with a numeric pad, you can use this method. Simply hold down the Alt Key and type 128148. When you lift the Alt Key, 💔 appears. ("Num Lock" must be on.)

(Method 3) Use the HTML Decimal Code (for webpages).

HTML TextOutput
💔💔

(Method 4) Use the HTML Entity Code (for webpages).

HTML TextOutput
We do not have the HTML entity code for this emoji because there probably isn't one. If you think there is one, please tell us using the form at the bottom of the page.none

(Method 5) Use the CSS Code (for webpages).

CSS and HTML TextOutput
<style>
span:after {
content: "\1F494";}
</style>
<span>Symbol:</span>
Symbol: 💔

(Method 6) Use the HTML Hex Code (for webpages).

HTML TextOutput
&#x1F494;💔

(Method 7) Use the Unicode (for various, e.g. Microsoft Office, JavaScript, Perl).

The Unicode for 💔 is U+1F494. The important part is the hexadecimal number after the U+, which is used in various formats. For example, in Microsoft Office applications (e.g. Word, PowerPoint), do the following:
TypeOutput
1F494
[Hold down Alt]
[Press x]
💔
(Note that you can omit any leading zeros.)
In JavaScript, the syntax is \uXXXX. So, \u1F494 wouldn't work in JavaScript because it is a 5-character hexadecimal number. To insert this character in JavaScript, the UTF-16 format (\uXXXX\uXXXX) is needed.
JavaScript TextOutput
let str = "\uXXXX\uXXXX"
document.write("My symbol: " + str)
My symbol: 💔
Read more about converting characters with a code place higher than 0x10000 (like this one) to the UTF-16 format.

(Method 8) Use the Hex Code for HTML 5 Canvas.

On the assumption that you already have your canvas and the context set up, use the Hex code in the format 0x1F494 to place the 💔 emoji on your canvas. For example:
JavaScript Text
const x = "0x"+"1F494"
ctx.fillText(String.fromCodePoint(x), 5, 5);
Output

💔

Help Us Improve Cyber Definitions

  • Do you disagree with something on this page?
  • Did you spot a typo?
  • Do you know a slang term that we've missed?
Please tell us using this form.