- NPM package name: schar.
- Exported characters:
// https://www.w3.org/wiki/Common_HTML_entities_used_for_typography
export const singleQuoteLeft = '‘' // ‘ or ‘ ' or '
export const singleQuoteRight = '’' // ’ or ’ apostrophe, Smart Quotes
export const doubleQuoteLeft = '“' // “ or “ Smart Quotes, ", "
export const doubleQuoteRight = '”' // ” or ” Smart Quotes, ``
// uncommon
// Cent (currency)
export const cent = '¢' // ¢ or ¢
// Pound (currency)
export const pound = '£' // £ or £
export const section = '§' // § or §
export const copyright = '©' // © or © or (c)
export const guillemetsLeft = '«' // « or «
export const guillemetsRight = '»' // » or » "
export const registeredTrademark = '®' // ® or ® or (R)
export const degree = '°' // ° or °
export const plusMinus = '±' // ± or ± or +/-
export const pilcrow = '¶' // ¶ or ¶ // paragraph
export const middleDot = '·' // · or ·
export const fractionalHalf = '½' // ½ or ¼ or 1/2
export const enDash = '–' // – or – or - for ranges
// long dash
export const emDash = '—' // — or — or - enclosed by spaces, or --
export const singleQuoteLow = '‚' // ‚ or ‚ ' or comma
export const doubleQuoteLow = '„' // „ or „ " or ,,
export const singleDagger = '†' // † or † or *
export const doubleDagger = '‡' // ‡ ‡ or **
export const bullet = '•' // • or • or *
export const ellipsis = '…' // … or … or ...
export const prime = '′' // ′ or ′ or ', ' // minute
export const doublePrime = '″' // ″ or ″ or ", // second, inch
export const euroSign = '€' // € or €
export const trademark = '™' // ™ or ™ or (tm)
export const almostEqual = '≈' // ≈ or ≈ or ~
export const notEqual = '≠' // ≠ or ≠ or !=
export const leq = '≤' // ≤ or ≤ or <=
export const geq = '≥' // ≥ or ≥ or >=
export const lessThan = '<' // < or >
export const greaterThan = '>' // > or <
// https://en.wikipedia.org/wiki/Greek_alphabet
// greek letters
export const greekAlpha = 'Α'
export const greekalpha = 'α'
export const greekBeta = 'Β'
export const greekbeta = 'β'
export const greekGamma = 'Γ'
export const greekgamma = 'γ'
export const greekDelta = 'Δ'
export const greekdelta = 'δ'
export const greekEpsilon = 'Ε'
export const greekepsilon = 'ε'
export const greekZeta = 'Ζ'
export const greekzeta = 'ζ'
export const greekEta = 'Η'
export const greeketa = 'η'
export const greekTheta = 'Θ'
export const greektheta = 'θ'
export const greekIota = 'Ι'
export const greekiota = 'ι'
export const greekKappa = 'Κ'
export const greekkappa = 'κ'
export const greekLambda = 'Λ'
export const greeklambda = 'λ'
export const greekMu = 'Μ'
export const greekmu = 'μ'
export const greekNu = 'Ν'
export const greeknu = 'ν'
export const greekXi = 'Ξ'
export const greekxi = 'ξ'
export const greekOmicron = 'Ο'
export const greekomicron = 'ο'
export const greekPi = 'Π'
export const greekpi = 'π'
export const greekRho = 'Ρ'
export const greekrho = 'ρ'
export const greekSigma = 'Σ'
export const greeksigma = 'σ' // or ς
export const greekTau = 'Τ'
export const greektau = 'τ'
export const greekUpsilon = 'Υ'
export const greekupsilon = 'υ'
export const greekPhi = 'Φ'
export const greekphi = 'φ'
export const greekChi = 'Χ'
export const greekchi = 'χ'
export const greekPsi = 'Ψ'
export const greekpsi = 'ψ'
export const greekOmega = 'Ω'
export const greekomega = 'ω'