:) or [:-)] This would be another way to use the [img]url_img[/img] and must be pre-configured by the forum administrator. (This and other emoticons, depending on the variant. Most BBCodes do not enclose emoticons in square brackets, leading to frequent accidental usage.)
(Specific image and size vary.)
<blockquote><p>quoted text</p></blockquote> (Usually implemented in more advanced ways.)
<spanstyle="font-size:30px">Large Text</span> or <spanstyle="font-size:85%">Smaller Text</span>
[stylesize="30px"]Large Text[/style] [stylesize="85"]Smaller Text[/style] (The unit of measurement varies with each BBCode variant and could represent pixels, points, or relative HTML sizes.)
Large Text Smaller Text
<spanstyle="color:fuchsia;">Text in fuchsia</span> or <spanstyle="color:#FF00FF;">Text in fuchsia</span>
[stylecolor="fuchsia"]Text in fuchsia[/style] or [stylecolor=#FF00FF]Text in fuchsia[/style] or [color=#FF00FF]Text in fuchsia[/color] (Both HTML color names and hexadecimal color values are generally supported, although on some boards, you must omit the # from selecting a hexadecimal color.)
BBCode is typically implemented by applying a series of regular expression string-replace operations upon the input. Because regular expressions are limited in analyzing the structure of text input, this has the artifact that any non-hierarchical BBCode input will be transformed into invalid non-hierarchical HTML without error.[citation needed]
Applying traditional parsing techniques is made difficult by ambiguities in the markup, such as in [quote=[b]text[/b][/quote], where the input can either be interpreted as "text" quoted from someone called [b, or the bolded text "text" surrounded by [quote= and [/quote], i.e. [quote=text[/quote].