Characters & B-Codes
Each Bliss character is identified by a unique B-code (like B313, B431, B1103) from Blissary's Bliss dictionary. These codes let you reference any character in the library.
Using B-Codes
Pass a B-code to generate a character:
js
import { BlissSVGBuilder } from 'bliss-svg-builder';
const builder = new BlissSVGBuilder('B313');
const svg = builder.svgCode;B313 - feeling, emotion
Input:
B313More Examples
B431 - love, affection
Input:
B431B1103 - understanding, comprehension
Input:
B1103B513 - person
Input:
B513Indicators
In Bliss, indicators are diacritic markers that go above the base character.
| Code | Indicator | Name | Purpose |
|---|---|---|---|
B81 | — | — | |
B86 | — | — | |
B97 | — | — | |
B99 | — | — |
See the Indicators Reference for the complete list.
Attaching Indicators
Use ; to attach an indicator to a character:
B431;B81 - to love (love + action indicator)
Input:
B431;B81The indicator is automatically positioned above the base character.