A hipass filter is an electronic circuit that allows high-frequency signals to pass through while attenuating low-frequency signals and blocking DC voltage. In a real circuit, this component network changes the signal by stripping away any DC offset, shifting the phase of frequencies near the cutoff point, and reducing the amplitude of low-frequency noise, hum, or subsonic rumble. Whether you are designing an audio crossover, decoupling a microphone bias, or building an RF transmitter, understanding the exact math and component behavior of these filters is critical to avoiding signal degradation.

The Core Mechanics and Component Selection

The most common implementation is the passive first-order RC (resistor-capacitor) hipass filter. In this topology, the capacitor is placed in series with the signal path, and the resistor is placed in parallel to ground (forming a voltage divider). Because a capacitor's reactance ($X_c$) is inversely proportional to frequency ($X_c = \frac{1}{2\pi fC}$), it presents infinite impedance to DC (0 Hz) and progressively lower impedance as frequency increases. The resistor sets the current limit and, together with the capacitor, establishes the cutoff frequency ($f_c$)—the exact point where the signal power drops by half (-3dB), and the voltage amplitude drops to 70.7% of its original value.

According to foundational circuit theory detailed by All About Circuits, the cutoff frequency is strictly determined by the RC time constant. Below is a data-dense reference table showing standard component pairings for various real-world applications.

Standard RC Hipass Filter Cutoff Frequencies and Component Values
Application Context Resistor (R) Capacitor (C) Cutoff Freq ($f_c$) Phase Shift at $f_c$
Audio AC Coupling (Line Level) 10 kΩ 100 nF 159.1 Hz +45°
Subwoofer Crossover (Active Input) 10 kΩ 15 nF 1.06 kHz +45°
RF DC Block (50Ω System) 50 Ω 100 pF 31.83 MHz +45°
ECG Biomedical Signal Coupling 1 MΩ 1.5 µF 0.106 Hz +45°
ESP32 DAC to Amplifier Coupling 10 kΩ 1 µF 15.91 Hz +45°

Worked Example: Sizing an Audio Coupling Hipass Filter

Let’s walk through a practical bench scenario. You are building a custom audio player using an ESP32 DevKit v1. The ESP32’s internal DAC outputs a signal biased at a 1.65V DC offset (half of the 3.3V logic high). You need to feed this into an LM386 audio amplifier, which expects an AC-only signal centered around 0V. If you feed the 1.65V DC directly into the LM386, you will waste headroom, cause severe clipping, and potentially overheat the amplifier's output stage.

You need a hipass filter to block the DC but pass the entire human hearing range (20 Hz to 20 kHz). The LM386 datasheet specifies an input impedance of roughly 10 kΩ to 50 kΩ. We will use $R = 10\text{ k}\Omega$ for our calculation to represent the worst-case (lowest) input impedance, which will yield the highest (most conservative) cutoff frequency.

We want our cutoff frequency ($f_c$) to be at or below 20 Hz. Using the rearranged filter formula $C = \frac{1}{2\pi R f_c}$:

  • $C = \frac{1}{2 \times \pi \times 10,000 \times 20}$
  • $C = \frac{1}{1,256,637}$
  • $C \approx 0.796 \mu F$
Design Decision: Since 0.796 µF is not a standard capacitor value, we round up to the nearest standard E12 value: 1 µF.

Recalculating the actual cutoff frequency with a 1 µF capacitor: $f_c = \frac{1}{2 \pi \times 10,000 \times 1\times 10^{-6}} = 15.9\text{ Hz}$. This perfectly passes the 20 Hz bass notes while completely blocking the 1.65V DC bias. For deeper bass extension and to minimize phase shift in the audible band, many designers will push this to a 4.7 µF or 10 µF capacitor, dropping the cutoff to 3.18 Hz or 1.59 Hz respectively.

Where You Meet This in Practice (and Common Confusions)

You will encounter hipass filters constantly on the workbench and in the field. The 'AC Coupling' button on your oscilloscope simply engages an internal hipass filter (usually with a cutoff around 10 Hz to 50 Hz) to strip away DC offsets so you can zoom in on small AC ripple on a power supply. In professional audio, active hipass filters (using op-amps) are used in mixing consoles to apply a 'low-cut' switch, eliminating stage rumble and microphone handling noise below 80 Hz.

What People Commonly Confuse It With:
The most frequent confusion is between a hipass filter and a DC blocking capacitor. Electrically, a single series capacitor is a first-order high-pass filter. The difference lies entirely in engineering intent. A 'DC block' is designed with a cutoff frequency far below the signal of interest (e.g., a 0.1 Hz cutoff for a 1 kHz audio signal) so that phase shift and attenuation at the target frequency are virtually zero. A 'hipass filter' is intentionally designed with a cutoff frequency near or inside the signal band to actively shape the frequency response, such as routing tweeter frequencies away from a woofer.

Component Warning: Capacitor Dielectrics Matter
When building audio hipass filters, never use standard X7R or Y5V ceramic capacitors in the signal path. These Class II dielectrics exhibit severe voltage coefficient (capacitance drops as voltage increases) and microphonics (they act as piezoelectric microphones, injecting physical vibrations into the audio as electrical noise). Always specify C0G/NP0 ceramics, polyester film (Mylar), or polypropylene capacitors for high-fidelity audio coupling. For a deep dive into filter component selection, refer to the design guides at Electronics Tutorials.

FAQ: Troubleshooting and Edge Cases

Why does my audio sound 'thin' or lack bass after adding a coupling capacitor?

Your cutoff frequency is too high. If you used a 100nF (0.1 µF) capacitor to couple into a 10 kΩ load, your $f_c$ is 159 Hz. You are actively attenuating everything below 159 Hz, which destroys the bass response. Upgrade to a 1 µF, 4.7 µF, or 10 µF film capacitor to push the cutoff well below the audible spectrum.

Does a hipass filter introduce phase shift, and does it matter?

Yes. A first-order RC hipass filter introduces a +45° phase lead exactly at the cutoff frequency, approaching +90° at frequencies far below cutoff, and settling to 0° far above cutoff. In simple AC coupling, this rarely matters. However, if you are building a stereo crossover network and summing the low-pass and high-pass outputs back together, this phase shift will cause severe cancellation (a 'hole' in the frequency response) at the crossover point unless you use phase-matched topologies like Linkwitz-Riley filters.

Can I just use a larger capacitor to get a lower cutoff frequency?

Up to a point. As you push into the 100 µF+ range for very low impedance loads (like driving an 8Ω speaker directly), physical electrolytic capacitors introduce parasitic series resistance (ESR) and inductance (ESL). Furthermore, electrolytic capacitors have wide tolerance margins (often -20% to +80%) and degrade over time as their internal electrolyte dries out. For very low cutoff frequencies in low-impedance circuits, it is better to use an active hipass filter (Sallen-Key topology) with an op-amp, allowing you to use small, stable, high-quality 10 nF film capacitors while achieving steep roll-off and zero insertion loss.

What happens if I put a hipass filter on a PWM signal?

If you pass a PWM (Pulse Width Modulation) signal through a hipass filter, you will strip away the DC average value, turning a unipolar 0-5V PWM square wave into a bipolar square wave centered around 0V. If your goal was to smooth the PWM into a pure analog DC voltage, you have used the wrong filter; you need a low-pass filter instead. A hipass filter will only extract the high-frequency switching edges, resulting in sharp positive and negative voltage spikes.