Try typing 'E' in Kunstler Script in MS Word. IGCSE Math papers in a particular syllabus uses that.

Answer from Venetia on Stack Exchange
🌐
Stack Exchange
math.stackexchange.com › questions › 1698265 › what-is-the-symbol-that-is-used-for-the-universal-set-in-these-two-textbooks
notation - What is the symbol that is used for the universal set in these two textbooks? - Mathematics Stack Exchange
$\begingroup$ Actually the OP already knows the meaning (the universal set), but wants to know which character it is. $\endgroup$ ... $\begingroup$ @BrianM.Scott I don't see this question as asking "what is the meaning of this symbol", especially since both use cases clearly state that the symbol means "the universal set".
🌐
OEISWiki
oeis.org › wiki › List_of_LaTeX_mathematical_symbols
List of LaTeX mathematical symbols - OeisWiki
All the predefined mathematical symbols from the TeX package are listed below. More symbols are available from extra packages. ... Scott Pakin, The Comprehensive LaTeX Symbol List, 2017.
🌐
ProofWiki
proofwiki.org › wiki › Symbols:U
Symbols:U - ProofWiki
However, note that from There Exists No Universal Set, this universal set cannot be everything that there is. The $\LaTeX$ code for \(\mathbb U\) is \mathbb U . ... Frequently used, and conventionally in many texts, to denote an open set in the context of topology. The $\LaTeX$ code for \(U\) is U . ... Used to denote the truth value of undetermined in the Łukasiewicz system of three-valued logic. The $\LaTeX$ code for \(\U\) is \U . ... The symbol for the unified atomic mass unit is $\mathrm u$.
🌐
GeeksforGeeks
geeksforgeeks.org › engineering mathematics › set-notations-in-latex
Set Notations in LaTeX - GeeksforGeeks
July 15, 2025 - This table shows how to write common set notation symbols in LaTeX with examples - perfect for students learning math typesetting:
🌐
Math Vault
mathvault.ca › home › higher math resource hub › foundation of higher mathematics › mathematical symbols › set theory symbols
Comprehensive List of Set Theory Symbols | Math Vault
April 11, 2025 - The following list documents some of the most notable symbols in set theory, along each symbol’s usage and meaning. For readability purpose, these symbols are categorized by their function into tables. Other comprehensive lists of symbols — as categorized by subject and type — can be also found in the relevant pages below (or in the navigational panel). ... Get the master summary of mathematical symbols in eBook form — along with each symbol’s usage and LaTeX code.
🌐
Reddit
reddit.com › r/latex › set notation for discrete mathematics
r/LaTeX on Reddit: Set Notation for discrete mathematics
March 25, 2021 -

Hey all, I've just started using LaTeX for my Discrete Mathematics course and everything has been going relatively well. I'm just at the point where I now need to R symbols, because I have been using $\mathhbb{R}$ for my set of all real numbers notation, but now I need an R symbol for definition of a relationship. I'm also using mathbb for all my set names, including the special sets like Real Numbers(R), All Integers (Z), All Rationals (Q), Universal Set (U), etc., is that good?

Find elsewhere
🌐
Poznań University of Technology
cs.put.poznan.pl › ksiek › latexmath.html
LaTeX Formal Methods Reference — Konrad Siek
The general idea of this reference is to provide a cheatsheet for writing math in LaTeX for someone who’s not particularily sure of either, such as myself. Each table contains a description of some symbol or concept, a rendering of the symbol, a LaTeX source, and, optionally, some odd notes on the concept or rendering. I hope to continue expanding this reference until I run out of Universe to fit it in.
Top answer
1 of 3
4

I am not sure what you want to achieve, but I think you want to place the label for the universal set at a place where it does not intersect with the surrounding box.

This answer explains how you can use the macro \setpostvennhook to customize the position of the labels. The manual of the package further adds that there are coordinates in all four corners of the venn diagram, which you can use to align the labels. You can also use the options vgap or hgap to increase the margin between the circles and the outer box.

Of course, if the contents of the label is too long, it will eventually "crash" into the right border of the surrounding box ...

\documentclass[border=10pt]{standalone}
\usepackage{tikz}
\usepackage{venndiagram}

\begin{document}

\begin{venndiagram3sets}[labelOnlyA={1}, labelOnlyB={2}, labelOnlyC={}, labelOnlyAB= {}, labelOnlyAC={}, labelOnlyBC={9}, labelABC={3}, vgap=.75cm]

    \setpostvennhook{
        \node[anchor=south west] at (venn bottom left) {$\xi$ \{4,5,6,7,8,10\}};
    }

\end{venndiagram3sets}

\end{document}   

2 of 3
4

You can use the \setpostvennhook to insert arbitrary TikZ code to be drawn after the venn diagram is constructed. Since the default size of the frame doesn't take into account the labels, it can be redrawn here taking that into account. Specifically, using the fit library then a node can be drawn that is guaranteed to encompass the diagram and the non-ABC label. Note that you need the option showframe=false to avoid drawing the original universal set frame.

I've also make a couple of other changes:

  1. The elements not in the sets A,B,C shouldn't be enclosed in braces. Technically, writing \{4,5,6,7,8,10\} indicates that the outer region contains one element which is the set containing 4,5,6,7,8,10. I presume that what you want to indicate is that the outer region itself contains those numbers.
  2. To avoid the symbol for the universal set getting confused with the elements, I've used the \setpostvennhook to place its symbol in the top right corner (which, I think, is a more standard place for it to be). I've also used \mathcal{E} rather than \xi.
\documentclass{book}
%\url{https://tex.stackexchange.com/q/653355/86}
\usepackage{tikz}
\usepackage{venndiagram}
\usetikzlibrary{fit}


\usepackage[left=2.00cm, right=1.00cm, top=3.00cm, bottom=3.00cm]{geometry}

\begin{document}
\begin{venndiagram3sets}[
  labelOnlyA={1},
  labelOnlyB={2},
  labelOnlyC={},
  labelOnlyAB= {},
  labelOnlyAC={},
  labelOnlyBC={9},
  labelABC={3},
  labelNotABC={4,5,6,7,8,10},
  showframe=false,
]
\setpostvennhook{
  \node[below left] at (venn top right) {\(\mathcal{E}\)};
  \node[fit=(venn top right) (venn bottom left) (labelNotABC),draw] {};
}
\end{venndiagram3sets}
\end{document}

🌐
Wikipedia
en.wikipedia.org › wiki › List_of_mathematical_symbols_by_subject
Glossary of mathematical symbols - Wikipedia
1 week ago - {\displaystyle \complement A=\complement _{U}A} ⁠, where U is a set which contains all possible sets currently under consideration, implicitly defined by the context. This set U is sometimes called the universe of discourse. 3. Used as a superscript on a set symbol, denotes the complement of that set; that is,
🌐
SCI Journal
scijournal.org › home › latex tutorial › how to write a union symbol in latex
How to write a union symbol in LaTeX 2026
July 13, 2022 - If we have set A and set B, the union is defined as A U B, for example, $$A\cup B=\{x\,:\, x \in A \text{ or } x \in B\}$$ ... LaTeX has the standard union symbol built-in, it takes no value as argument, the command is \cup.
🌐
University of Toronto
math.toronto.edu › mathit › symbols-letter.pdf pdf
The Comprehensive LATEX Symbol List Scott Pakin
Some of these symbols are guaranteed to be available in every LATEX2ε system; others require fonts and packages that may not accompany a given distribution and that therefore need to be ... Each section of this document contains a number of font tables. Each table shows a set of symbols, with the
🌐
Carnegie Mellon University
math.cmu.edu › ~cnewstea › teaching › old › teaching › 21-128-F15 › latex-handout.pdf pdf
A brisk introduction to LATEX Clive Newstead
Logic · conjunction, disjunction ... · \oplus · true, false (in truth table) ✓, × · \checkmark, \times · quantifiers (universal, existential) ∀, ∃ · \forall, \exists · Set theory ·...
🌐
BYJUS
byjus.com › maths › universal-set
Universal Set Definition
Fact: There is no standard notation for Universal set symbol, it can also be denoted by any other entity like ‘V’ or ‘ξ’.
Published   May 18, 2022
Views   31K
🌐
Wikipedia
en.wikipedia.org › wiki › List_of_logic_symbols
List of logic symbols - Wikipedia
2 weeks ago - In logic, a set of symbols is commonly used to express logical representation. The following table lists many common symbols, together with their name, how they should be read out loud, and the related field of mathematics. Additionally, the subsequent columns contains an informal explanation, a short example, the Unicode location, the name for use in HTML documents, and the LaTeX ...
🌐
LaTeX Reference
latexref.xyz › Math-symbols.html
Math symbols (LaTeX2e unofficial reference manual (January 2025))
For “such that”, as in the definition of a set, use \mid because it is a relation. See Delimiters, for how to use the mathtools package to create flexibly-sized absolute-value symbols. ... ∧ Logical and (binary). Synonym: \land. See also logical or \vee. Similar: variable-sized operator \bigwedge. ... Ξ uppercase Greek letter (ordinary). ... The following symbols are most often used in plain text but LaTeX provides versions to use in mathematical text.
Top answer
1 of 5
60

To answer your specific question:

To quote from Leslie Lamport's "LaTeX: A Document Preparation System" (Leslie Lamport initially developed LaTeX):

The ten special characters

# $ % & ~ _ ^ \ { }

are used only in LaTeX commands.

...

Seven of those symbols can be produced by typing a \ in front of the corresponding character.

$ & % # _ { } are easy to produce.

In other words, to get { and } you must type \{ and \}. This is because { and } mean something very special to LaTeX. They are used to delimit arguments. So with something like \emph{Hi}, the emphasis starts at the { and finishes at the } (\emph is a command which is used to emphasise text; the standard behaviour is for it to italicise it). In other words, everything enclosed within the braces is emphasised.

As such, if you want to print the symbols { and }, you can't just type the plain symbol. Instead you must "escape" it. The \ is the escape character and it basically tells LaTeX to pay attention. emph is just a word like any other to LaTeX. But \emph is a command to LaTeX. What escaping a { does is cause LaTeX to print a { character.

So to get {2,4,6,8...}, all you need to do is type:

$\{2, 4, 6, 8\dots\}$

To get {x|x is positive and even}, you can do:

$\{x \mid x \text{ is positive and even}\}$

As raised in the comments - this relies on the amsmath package. Instead, you can do:

$\{x \mid x \mbox{ is positive and even}\}$

For most purposes, this has the same effect, but there are minor differences:

Difference between various methods for producing text in math mode

For really nice spacing, follow Hagen von Eitzen's advice and use:

$\{\,x \mid x \text{ is positive and even}\,\}$

As you can see, \, inserts a thin space. There are other commands for inserting space in LaTeX. However, \, is one of only two that can be used outside of math-mode.


But, really, it's important that you gain an understanding of the basic operating principles of LaTeX before you go further and start worrying about how to do specific things; otherwise you're gonna be completely at sea and everything's gonna seem like black magic and nonsense. So I really recommend you have a little look through some basic introductions before diving right in there.

However I learned by doing - I learned by trying it out, I learned by using LaTeX and looking things up whenever I wanted to do something I didn't yet know how to do. That's a very fulfilling, very enjoyable and very practical way to learn - although there are massive holes in my knowledge and, because my approach was very light on theory, I'm only just starting to learn about bad habits I've developed and principles I may have overlooked.

But still, as good as it is to dive in there and get your hands dirty, you have to, have to get a basic idea of what LaTeX is and how it works or you'll probably continue to have a pretty miserable time. It's no wonder you don't like it and everything seems arcane and difficult and a complete pain in the posterior to you!

2 of 5
18

LaTeX puts at your disposal the package braket that helps you creating beautiful sets, kets and bras for the Dirac notation. In particular

\set{x, \mid x<2}

\ket{\psi}

\bra{\phi}

do the job as simple as that as shown below:

Let $A=\set{x\mid \psi(x)>0}$; also, given
$\ket{\psi}\in\mathcal{H}$, then $\psi(x)\coloneqq\braket{x|\psi}$.