How to Type Cent Symbol (¢) on Any Device

The cent symbol (¢) represents fractional dollar amounts in currency notation. While it’s fallen out of common use in many countries, you’ll still need it for financial documents, pricing tables, and historical records. Unlike the dollar sign ($), the cent symbol isn’t printed on standard keyboards, which makes typing it a bit tricky.

When writing currency amounts, remember: use either “$0.50” or “50¢” to represent fifty cents—never “$0.50¢” together. Using both symbols with the same number is incorrect because “$0.50” already means fifty cents (50% of a dollar), so adding “¢” would be redundant.

This guide covers every method to type the cent symbol on Windows, Mac, Linux, and mobile devices.

How to Type the Cent Symbol on Windows

Windows offers several built-in methods to insert the cent symbol into your documents.

Method 1: Alt Code (Fastest)

The Alt code method works in nearly every Windows application:

  1. Click where you want to insert the symbol
  2. Make sure Num Lock is enabled on your keyboard
  3. Hold down the Alt key
  4. Type 0162 on the numeric keypad (the numbers on the right side of your keyboard)
  5. Release Alt—the cent symbol (¢) appears

Important: This only works with the numeric keypad, not the number row above your letters.

Method 2: Character Map

Character Map gives you access to every special character available in your fonts:

  1. Press Win + R to open the Run dialog
  2. Type charmap and press Enter
  3. Scroll through the character grid or search for “cent”
  4. Click the cent symbol (¢)
  5. Click Select, then Copy
  6. Paste it into your document with Ctrl + V

Method 3: Emoji Keyboard

Windows 10 and 11 include a symbols panel that’s quick to access:

  1. Click where you want the symbol
  2. Press Win + . (Windows key + period) or Win + ;
  3. Click the Symbols icon (Ω)
  4. Select Currency Symbols from the categories
  5. Click the cent symbol (¢) to insert it

How to Type the Cent Symbol on Mac

Mac computers make typing special characters straightforward with dedicated keyboard shortcuts.

Method 1: Keyboard Shortcut (Fastest)

The simplest way to type the cent symbol on Mac:

  1. Click where you want the symbol
  2. Press Option + 4 (hold Option, then press 4)
  3. The cent symbol (¢) appears immediately

This shortcut works in all Mac applications, including browsers, email clients, and text editors.

Method 2: Character Viewer

For occasional use, the Character Viewer provides visual access to all symbols:

  1. Click where you want the symbol
  2. Press Control + Command + Spacebar
  3. The Character Viewer window opens
  4. Search for “cent” in the search box
  5. Double-click the cent symbol (¢) to insert it

You can also access Character Viewer by clicking the menu bar icon (if enabled) or through Edit → Emoji & Symbols in most apps.

How to Type the Cent Symbol on Linux

Linux distributions offer multiple input methods depending on your desktop environment.

Method 1: Compose Key

The Compose key lets you create special characters by pressing a logical sequence:

  1. Enable the Compose key in your keyboard settings (usually under Settings → Keyboard → Compose Key)
  2. Press your Compose key (often Right Alt or Right Win)
  3. Type c then / or =
  4. The cent symbol (¢) appears

The exact sequence may vary by distribution. Common combinations include Compose + c + /, Compose + c + =, or Compose + c + |.

Method 2: Unicode Input

Most Linux systems support direct Unicode entry:

  1. Press Ctrl + Shift + U
  2. Type 00a2 (the Unicode code for cent)
  3. Press Enter or Space
  4. The cent symbol (¢) appears

Method 3: Copy from Character Map

GNOME users can use the Characters application:

  1. Open Characters (search for it in your application menu)
  2. Search for “cent”
  3. Click the cent symbol (¢)
  4. It’s automatically copied—paste with Ctrl + V

How to Type the Cent Symbol on Mobile Devices

Both Android and iOS hide the cent symbol behind the dollar sign on their keyboards.

On Android

  1. Open your keyboard in any app (messaging, email, notes, etc.)
  2. Tap the ?123 or 123 button to switch to numbers and symbols
  3. Press and hold the dollar sign ($)
  4. A popup appears with currency symbols
  5. Slide your finger to the cent symbol (¢)
  6. Release to insert it

The exact location varies by keyboard app, but most place the cent symbol near the dollar sign.

On iPhone and iPad

  1. Open your keyboard in any app
  2. Tap the 123 button to switch to numbers
  3. Press and hold the dollar sign ($)
  4. A popup shows additional currency symbols
  5. Slide to the cent symbol (¢) and release

This works in all iOS apps including Messages, Mail, Notes, and Safari.

Inserting the Cent Symbol in Microsoft Word

Word provides multiple ways to insert special characters, with some shortcuts specific to the application.

Method 1: Keyboard Shortcuts

Use the same shortcuts as your operating system:

  • Windows: Alt + 0162 (on numeric keypad)
  • Mac: Option + 4

Method 2: Insert Symbol Feature

Word’s Symbol menu gives you precise control:

  1. Click where you want the symbol
  2. Go to Insert tab → Symbol → More Symbols
  3. In the Symbol dialog, select “(normal text)” for Font
  4. Find and click the cent symbol (¢)
  5. Click Insert

For faster access in future, you can assign your own keyboard shortcut through the Symbol dialog.

Method 3: AutoCorrect

Create a text shortcut that automatically converts to the cent symbol:

  1. Go to File → Options → Proofing → AutoCorrect Options
  2. In “Replace” type something like cent or \c
  3. In “With” paste the cent symbol: ¢
  4. Click Add, then OK

Now typing your shortcut automatically inserts the cent symbol.

Typing the Cent Symbol in Google Docs

Google Docs handles special characters through its Insert menu.

Method 1: Special Characters Menu

  1. Click where you want the symbol
  2. Go to Insert → Special Characters
  3. In the search box, type “cent”
  4. Click the cent symbol (¢) to insert it

Method 2: Copy and Paste

The quickest method for one-time use:

  1. Copy this: ¢
  2. Paste into Google Docs with Ctrl + V (Windows) or Command + V (Mac)

Using the Cent Symbol in HTML and Web Development

Web developers can insert the cent symbol using HTML entities or Unicode references.

HTML Entity Codes

<!-- Using named entity -->
50¢ or $0.50

<!-- Using numeric entity -->
50¢ or $0.50

<!-- Using hex entity -->
50¢ or $0.50

All three methods produce: 50¢ or $0.50

CSS Content Property

Insert the cent symbol via CSS using the Unicode escape sequence:

.price::after {
    content: "\00A2";
}

.cents::before {
    content: "¢";
}

JavaScript

Insert the cent symbol in JavaScript strings:

let price = "50\u00A2";  // Using Unicode escape
let amount = String.fromCharCode(162);  // Using character code
console.log(price);  // Outputs: 50¢

Unicode Reference for the Cent Symbol

The cent symbol has a standardized Unicode representation that works across all platforms:

  • Unicode code point: U+00A2
  • Decimal code: 162
  • Hex code: 00A2
  • HTML entity: ¢ or ¢
  • UTF-8 encoding: C2 A2

This consistency means you can use the same codes in programming languages, databases, and text files regardless of your operating system.

Creating Custom Keyboard Shortcuts

If you type the cent symbol frequently, creating a custom shortcut can save time.

On Windows

Use Microsoft PowerToys Keyboard Manager or AutoHotkey:

PowerToys method:

  1. Install Microsoft PowerToys (free from Microsoft)
  2. Open PowerToys → Keyboard Manager
  3. Click “Remap a key” or “Remap a shortcut”
  4. Assign your preferred key combination to output ¢

AutoHotkey method:

  1. Download and install AutoHotkey
  2. Create a new script file with this code:
::cent::¢
  1. Save and run the script—typing “cent” automatically inserts ¢

On Mac

Use System Preferences to create text replacements:

  1. Go to System Preferences → Keyboard → Text
  2. Click the + button
  3. In “Replace” type your shortcut (like cent)
  4. In “With” paste the cent symbol: ¢
  5. Close Preferences

Now typing your shortcut in any app automatically inserts the cent symbol.

On Linux

Create a custom keyboard shortcut in your desktop environment:

  1. Open Settings → Keyboard → Shortcuts
  2. Add a custom shortcut
  3. Set the command to: xdotool type '¢'
  4. Assign your preferred key combination

Frequently Asked Questions

Why isn’t the cent symbol on my keyboard?

The cent symbol was removed from most keyboards as electronic payment systems replaced cash transactions. In many countries, prices are now displayed only in dollars and decimal points ($0.50) rather than cents (50¢). Keyboard manufacturers prioritized more commonly used characters.

Can I type the cent symbol in Excel?

Yes. Use Alt + 0162 on Windows or Option + 4 on Mac. You can also copy and paste it from this guide. The cent symbol works in formulas and can be concatenated with numbers using the TEXT function.

What’s the difference between $ and ¢?

The dollar sign ($) represents whole dollars, while the cent symbol (¢) represents hundredths of a dollar. One dollar equals 100 cents. Use “$0.50” to mean “fifty cents” or “50¢” but never combine them as “$0.50¢”—that would be grammatically incorrect.

Does the cent symbol appear in all fonts?

Most modern fonts include the cent symbol since it’s part of the basic Latin-1 Supplement Unicode block. However, some decorative or specialized fonts may not support it. Standard fonts like Arial, Times New Roman, Calibri, and Helvetica all include the cent symbol.

How do I type the cent symbol without a numeric keypad?

On Windows laptops without a numeric keypad, use the Character Map, Emoji Keyboard (Win + .), or enable Num Lock and use the embedded numeric keypad (usually on U, I, O, J, K, L keys). On Mac, use Option + 4. On all platforms, you can copy and paste from this guide.

Is the cent symbol still used?

Yes, though less frequently than before. It appears in accounting documents, historical records, financial reports, and pricing tables. Some businesses use it for clarity when listing prices under one dollar. It’s also used in discussions about historical prices and inflation comparisons.