Cookie
A small text string the browser stores for a site and sends with every request to it.
Three main uses: session cookies (prove you're logged in), preference cookies (dark mode, language), tracking cookies (monitor your behaviour — this is what the GDPR pop-up is about).
Security flags like HttpOnly (JS can't read), Secure (HTTPS only), and SameSite (protection against CSRF) are important.