How to escape square bracket in org mode links?

emacs, org-mode

Solution

I found that using org-mode Macros to insert the ASCII codes for the square brackets works. I have posted the solution on Emacs Stackexchange.

Problem

I want to add square bracket in org mode links' description, for example: ``` [[http://www.example.com][ Array[i] ]] ``` Is there a way to escape the brackets `[` and `]` ? Someone mentioned URL-encoding, but it's not compatible. Besides, looking for the URL-encoding of a character is time consuming.

Original source