Alphabets Patterns A-Z

You are currently viewing Alphabets Patterns A-Z
alphabet patterns banner
Whenever  you prepare for Interview you must be aware with printing patterns , In coding interview interviewer may ask you print any number pattern , star pattern or an character patterns. We recommend you to follow our patterns series so you will feel comfortable with printing patterns. In this blog post we have shared all alphabets patterns from A, B,C,D . . . . to Z  with Java , CPP, Python and JavaScript.

We recommend you to solve other types patterns as well –

Now let’s get started with learning how to print a alphabets using simple code logic, click on the pattern and you will get redirected to the code.

Pattern A

 *** 
*   *
*   *
*****
*   *
*   *
*   *

Code to print A

Pattern B

**** 
*   *
*   *
**** 
*   *
*   *
****

Code to print B

Pattern C

 ****
*    
*    
*    
*    
 ****

Code to print C

Pattern D

**** 
*   *
*   *
*   *
*   *
*   *
****

Code to print D

Pattern E

*****
*    
*    
*****
*    
*    
*****

Code to print E

Pattern F

*****
*    
*    
*****
*    
*    
*

Code to print F

Pattern G

*****
*    
*    
*  **
*   *
*   *
*****

Code to print G

Pattern H

*   *
*   *
*   *
*****
*   *
*   *
*   *

Code to print H

Pattern I

*****
  *  
  *  
  *  
  *  
  *  
*****

Code to print I

Pattern J

*****
  *  
  *  
  *  
  *  
* *  
***

Code to print J

Pattern K

*   *
*  * 
* *  
**   
* *  
*  * 
*   *

Code to print K

Pattern L

*    
*    
*    
*    
*    
*    
*****

Code to print L

Pattern M

*     *
**   **
* * * *
*  *  *
*     *
*     *
*     *

Code to print M

Pattern N

*     *
**    *
* *   *
*  *  *
*   * *
*    **
*     *

Code to print N

Pattern O

 *** 
*   *
*   *
*   *
*   *
*   *
 ***

Code to print O

Pattern P

 *** 
*   *
*   *
**** 
*    
*    
* 

Code to print P

Pattern R

 *** 
*   *
*   *
**** 
*   *
*   *
*   *

Code to print R

Pattern S

*****
*    
*    
*****
    *
    *
*****

Code to print S

Pattern T

*****
  *  
  *  
  *  
  *  
  *  
  *  

Code to print T

Pattern U

*   *
*   *
*   *
*   *
*   *
*   *
 *** 

Code to print U

Pattern V

*           *
 *         * 
  *       *  
   *     *   
    *   *    
     * *     
      * 

Code to print V

Pattern W

*  *  *
* * * *
**   **
*     *

Code to print W

Pattern X

*     *
 *   * 
  * *  
   *   
  * *  
 *   * 
*     *

Code to print X

Pattern Y

*     *
 *   * 
  * *  
   *   
   *   
   *   
   *

Code to print Y

Pattern Z

*******
     * 
    *  
   *   
  *    
 *     
*******

Code to print Z

Leave a Reply