This article explains how to use the Bootstrap icons after you installed Elevenfour's Bootstrap Icon plugin.
Technically the Drop Cap BBCode styles the first letter of the paragraph that you selected via CSS using ::first-letter. If you want to customize the look of your Drop Cap you can do this either for all styles by clicking on Customization
CSS
.dropcapBBCode::first-letter {
font-size: 4em;
font-family: Georgia, serif;
color: rgba(0,0,0, 1);
}
The code above would change the font size to 4em, the font family to Georgia or serif and the color to black.
Remember: The first thing in the paragraph needs to be a letter or it would not work.