Angle brackets are the paired marks < > or ⟨ ⟩ used mainly to enclose technical, linguistic, or digital information. Unlike parentheses and square brackets, they rarely appear in ordinary English sentences.
You are most likely to see them in computer code, instructional placeholders, linguistic examples, and mathematical comparisons. Their meaning depends on the subject and whether the marks are being used as a pair.
What Are Angle Brackets?
Angle brackets consist of an opening mark and a closing mark:
- Opening angle bracket:
<or⟨ - Closing angle bracket:
>or⟩ - Paired form:
<text>or⟨text⟩
On a standard keyboard, people commonly use < and > as angle brackets. Technically, Unicode identifies these characters as the less-than sign and greater-than sign. The typographic characters ⟨ and ⟩ are separate mathematical angle brackets. (Unicode)
The same visible marks can therefore perform different jobs:
<name>encloses a placeholder.<p>represents an HTML tag.<sh>identifies written letters in linguistics.4 < 9means that four is less than nine.
Context usually makes the intended meaning clear.
Uses in Technical Writing
Technical writers use angle brackets when part of an instruction must be replaced with information supplied by the reader.
Showing placeholders
A placeholder represents a value that has not yet been entered.
- Enter
<username>to continue. - Save the document as
<file name>.pdf. - Send the message to
<email address>. - Replace
<date>with the submission date.
The text inside the brackets is not normally typed exactly as shown. The reader replaces it with suitable information.
For example:
Type
login <username>.
A user named Sara would type:
login Sara
Microsoft’s technical-writing guidance recommends angle brackets for code placeholders when those marks are not already part of the programming language’s syntax. (Microsoft Learn)
Presenting command patterns
Angle brackets can identify required information in a command:
rename <old file> <new file>search <keyword>send <message> <recipient>create-user <name> <password>
Writers should explain the convention before using it because some beginners may type the brackets themselves.
Showing navigation paths
A single right angle bracket may separate steps in a menu or settings path:
- Select Settings > Privacy > Location.
- Go to File > Export > PDF.
- Open Tools > Language > Spelling.
Here, the marks are not a pair. Each > means “go to the next option.” Style guidance commonly recommends spaces around these separators for readability. (Microsoft Learn)
Uses in Linguistics
In linguistics, angle brackets can show that the writer is discussing spelling, letters, or graphemes, rather than pronunciation.
- The spelling
<cat>contains three letters. - The grapheme
<c>may represent different sounds. - The letter sequence
<sh>usually represents one sound in English. - The ending
<ed>has several pronunciations.
This notation helps distinguish written and spoken forms:
Notation | What It Represents | Example |
|---|---|---|
< > | Spelling or graphemes | |
/ / | Phonemes | /ʃɪp/ |
[ ] | Detailed speech sounds | [ʃɪp] |
Consider the word ship:
<ship>refers to its written form./ʃɪp/represents its phonemic pronunciation.[ʃɪp]may represent a more detailed phonetic transcription.
Angle brackets are therefore useful when comparing spelling with pronunciation. Linguistic notation guides commonly use them around orthographic letters and graphemes. (Universität Bremen)

Uses in Digital Text
Angle brackets play an important role in coding, markup, templates, and online instructions.
HTML tags
HTML uses angle brackets to mark elements on a webpage:
<p>This is a paragraph.</p>
In this example:
<p>opens the paragraph element.</p>closes it.- The forward slash shows that the second tag is a closing tag.
Other familiar examples include:
<h1>Main Heading</h1>
<a>Link text</a>
<strong>Important text</strong>
The angle brackets separate the tags from the visible content. W3C documentation describes HTML tags as being set apart by < and >. (W3C)
Templates and automatic fields
Digital forms and templates may use angle brackets to identify information that will be inserted later:
- Dear
<customer name>, - Your order
<order number>has been dispatched. - The meeting begins at
<time>. - Contact
<department>for assistance.
These marks tell the writer or software that the enclosed words are temporary instructions, not final text.
Code and structured data
Some programming and markup systems assign special meanings to angle brackets. Depending on the language, they may indicate:
- Tags
- Generic types
- Comparison operations
- Input or output
- Replaceable values
Because the meaning changes between systems, writers should not assume that every use of < and > works in the same way.

