HTML Entity for Lowercase K Reverse (ʞ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+029E

What You'll Learn

How to display the lowercase k reverse or turned k (ʞ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+029E in the IPA Extensions block—the letter k rotated 180 degrees. It appears in the International Phonetic Alphabet (IPA) and in linguistic and phonetic notation.

Render it with ʞ, ʞ, or CSS escape \29E. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase K Reverse Entity

Unicode U+029E

IPA Extensions

Hex Code ʞ

Hexadecimal reference

HTML Code ʞ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+029E
Hex code       ʞ
HTML code      ʞ
Named entity   (none)
CSS code       \29E
Meaning        Latin small letter turned k
Also known as  k reverse, turned k
Related        U+006B = k (plain lowercase)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase k reverse (ʞ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\29E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x29E;</p>
<p>Symbol (decimal): &#670;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase k reverse (ʞ) is supported in modern browsers when the font includes IPA Extensions glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the lowercase k reverse (ʞ) in IPA and linguistic contexts:

Large glyphʞ
Also known asTurned k (k rotated 180°)
IPA usePhonetic notation and linguistic symbol sets
Not the same asplain k (U+006B) or ʝ (j crossed tail)
Numeric refs&#x29E; &#670; \29E

🧠 How It Works

1

Hexadecimal Code

&#x29E; uses the Unicode hexadecimal value 29E to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#670; uses the decimal Unicode value 670 to display the same character. A common method for IPA Extensions characters.

HTML markup
3

CSS Entity

\29E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ʞ. Unicode U+029E sits in IPA Extensions. Do not confuse with plain k (U+006B), ĸ (kra), or ʝ (j crossed tail). Use the precomposed character rather than CSS rotation of k.

Use Cases

The lowercase k reverse (ʞ) is commonly used in:

📜 IPA transcription

International Phonetic Alphabet notation where the turned k appears as a symbol.

🔤 Linguistics

Academic papers, textbooks, and resources on phonetics and phonology.

📖 Dictionaries

Pronunciation guides and reference works using IPA transcriptions.

🌐 Language learning

Educational apps and content teaching or displaying IPA symbols.

🎨 Typography

Fonts and typographic systems that include IPA and linguistic symbol sets.

♿ Accessibility

Correct Unicode ensures screen readers handle ʞ properly in phonetic content.

⚙ Programmatic HTML

When generating linguistic markup, using &#670; or &#x29E; ensures correct output.

💡 Best Practices

Do

  • Use U+029E (ʞ) for turned k; use U+006B for plain k when semantics matter
  • Serve pages as UTF-8; you can also type ʞ directly in UTF-8 source
  • Use fonts that support IPA Extensions (e.g. Doulos SIL, Charis SIL)
  • Prefer the precomposed character over CSS rotation of k
  • Pick one entity style (hex or decimal) per project for consistency

Don’t

  • Substitute plain k or CSS-rotated k when ʞ is required
  • Confuse ʞ (turned k) with ĸ (kra) or ƙ (k hook)
  • Expect a named HTML entity—none exists for this character
  • Put CSS escape \29E in HTML text nodes
  • Assume all fonts render IPA Extensions glyphs identically

Key Takeaways

1

Three references render ʞ; no named entity exists

&#x29E; &#670;
2

For CSS stylesheets, use the escape in the content property

\29E
3

Unicode U+029E — LATIN SMALL LETTER TURNED K

4

Essential for IPA notation and linguistic typography

5

Previous: Lowercase K Kra (ĸ)   Next: Lowercase L

❓ Frequently Asked Questions

Use &#x29E; (hex), &#670; (decimal), or \29E in CSS content. There is no named HTML entity for ʞ.
U+029E (LATIN SMALL LETTER TURNED K). IPA Extensions block. Hex 29E, decimal 670. Used in IPA and linguistic notation.
When writing IPA phonetic transcriptions, linguistic and phonological content, dictionary pronunciation guides, language-learning materials, and academic phonetics requiring the turned k symbol.
ʞ (U+029E) is the turned k (k rotated 180 degrees), used in IPA and linguistic notation. k (U+006B) is the standard lowercase k. They are distinct Unicode characters; do not use CSS rotation as a substitute.
Named HTML entities cover a limited set of characters. ʞ is in IPA Extensions and uses numeric codes (hex or decimal) or a CSS escape. This is standard for IPA and extended phonetic symbols without named entities.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful