Open deepakdinesh1123 opened 3 years ago
Since there was no way to add bullet points in fpdf I tried to add it by adding it as a unicode character ('\u2022') but could not do so
You must use Latin1 escape sequences.
Try using "\x95" (bullet character)
"\x95"
Also, pyfpdf is not maintained anymore, you may want to check https://github.com/PyFPDF/fpdf2
pyfpdf
Since there was no way to add bullet points in fpdf I tried to add it by adding it as a unicode character ('\u2022') but could not do so