I need to develop a code to check the String has got any Semicolon. And charector can be in any flavor.
            Charector                   : ;
            Ascii                        : 59
            HTML Entity (decimal)        : ;
            HTML Entity (hex)            : ;
            Alt                          : 059
            Alt                          : 59
            UTF-8 (hex)                  : 0x3B (3b)
            UTF-8 (binary)               : 00111011
            UTF-16 (hex)                 : 0x003B (003b)
            UTF-16 (decimal)             : 59
            UTF-32 (hex)                 : 0x0000003B (3b)
            UTF-32 (decimal)             : 59
    etc...
Is there a proper way with regular expression , where I can check all flavors of semicolon.
 
     
     
    