A TrueType implementation of proposed, non-canonical punctuation marks from Hervé Bazin's 1966 essay Plumons l’Oiseau. Glyphs reside at Unicode block suggested by Mykyta Yevstifeyev and Karl Pentzlin.
Download the Bazin TrueType font file here.
Define a CSS font-face with the TrueType file
@font-face { font-family: "Bazin"; src: url("path/to/Bazin.ttf"); }
Include Bazin as a fallback font in your font-family declaration. CSS will load your primary font for text and fall back to Bazin for the punctuation glyphs, because they are in an unimplemented Unicode block in most other fonts.
body { font-family: 'EB Garamond', 'Bazin', serif; }
Use as Unicode literals in strings or HTML entities in pages.
var s = "You mean the world to me\u2E43";
<p>You mean the world to me⹃</p>