1. font-awesome-icon-chars
The list of Font Awesome icon unicode characters in several file format
font-awesome-icon-chars
Package: font-awesome-icon-chars
Created by: gluons
Last modified: Sat, 18 Jun 2022 02:47:12 GMT
Version: 2.6.0
License: MIT
Downloads: 14,914
Repository: https://github.com/gluons/Font-Awesome-Icon-Chars

Install

npm install font-awesome-icon-chars
yarn add font-awesome-icon-chars

Font Awesome Icon Character List

license
npm
npm
Known Vulnerabilities
Travis
TSLint
Renovate enabled

The list of Font Awesome icon unicode characters in several file format.

This list contains only free icons.

Installation

Via NPM:

NPM

npm install font-awesome-icon-chars

Via Yarn:

yarn add font-awesome-icon-chars

Usage

Assets

You can use characters list file in character-list directory.
All characters list files will be placed in this directory.

Node.js

You can also get list of icon from this module.

 const faIconChars = require('font-awesome-icon-chars');
const { solid, regular, brands } = faIconChars;

// Solid icons
for (let icon of solid) {
	console.log(`Icon ID: ${icon.name}, Icon Unicode: ${icon.unicode}`);
}
// Regular icons
for (let icon of regular) {
	console.log(`Icon ID: ${icon.name}, Icon Unicode: ${icon.unicode}`);
}
// Brands icons
for (let icon of brands) {
	console.log(`Icon ID: ${icon.name}, Icon Unicode: ${icon.unicode}`);
}

Schema

📜 CSON, JSON, TOML, YAML

Icon

  • name (string) — Font Awesome icon name.
  • unicode (string) — An unicode of Font Awesome icon.

📜 XML

  • <style>
    • <solid> — Font Awesome solid icons
      • <icon id="...icon name...">
        • id (attribute) — Font Awesome icon name
        • <unicode> — Contain an unicode of Font Awesome icon.
    • <regular> — Font Awesome regular icons
      • <icon id="...icon name...">
        • id (attribute) — Font Awesome icon name
        • <unicode> — Contain an unicode of Font Awesome icon.
    • <brands> — Font Awesome brands icons
      • <icon id="...icon name...">
        • id (attribute) — Font Awesome icon name
        • <unicode> — Contain an unicode of Font Awesome icon.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code