-
Notifications
You must be signed in to change notification settings - Fork 29
/
accessiblechart.html
967 lines (914 loc) · 33.1 KB
/
accessiblechart.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
MIT License
Copyright (c) 2004-2006 Weston Ruter
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>International Phonetic Alphabet (IPA) Chart in Unicode and XHTML/CSS</title>
<meta name="author" content="Weston Ruter" />
<meta name="description" content="Standards compliant and open source edition of the IPA chart in Unicode." />
<meta name="keywords" content="linguistics, phonetics, phonology, xhtml, css, international phonetic alphabet, ipa, chart" />
<link rel='stylesheet' type='text/css' href='all.css?5' />
<!--[if lt IE 7]>
<style type="text/css">#keyboardLink { position:absolute; } </style>
<![endif]-->
<script type="text/javascript" src="chart.js"></script>
</head>
<body>
<div id="chart">
<h1 id="title">The International Phonetic Alphabet <span id="alphabetRevision">(revised to 2005)</span></h1>
<div><a target="_top" href="./keyboard/" id="keyboardLink">IPA Chart Keyboard</a></div>
<p id="chartIntro">
This IPA chart is composed of Unicode characters and is written in
valid XHTML/CSS; it is open source software released under the GPL.
<span id="keyboardRefHead">To easily copy/enter/input/insert/type
the IPA characters/symbols/letters/glyphs and diacritics, found in
this chart, use the <a href="keyboard/" target="_top">IPA Unicode “Keyboard”</a>,
which is built off of this document.</span>
</p>
<p><a href="./index.html">Go back to the original chart</a></p>
<p>The unicode values of the symbols of the chart are visible if you hover the mouse over them. However, screen readers can't benefit from this. <a href="https://www.internationalphoneticassociation.org/sites/default/files/phonsymbol.pdf">See this pdf file for a full list of symbols with its values.</a></p>
<!--[if !IE]><!-->
<button id="loadFontBtn" type="button" onclick="loadFontStylesheet(); return false;" title="If don't have a font installed that can display all of the symbols in the IPA, click this button to load and immediately apply a font that does. Please be patient... it takes a moment to download.">Missing some symbols? Apply Doulos SIL font</button>
<!--<![endif]-->
<div id="pulmonicConsonants">
<h2>Consonants (Pulmonic)</h2>
<table>
<!--<caption>Where symbols appear in pairs, the one to the right
represents a voiced consonant. Shaded areas denote articulations
judged impossible.</caption>-->
<colgroup width="0*" />
<colgroup />
<colgroup />
<colgroup />
<colgroup />
<colgroup />
<colgroup />
<colgroup />
<colgroup />
<colgroup />
<colgroup />
<colgroup />
<thead>
<tr>
<th></th>
<th class="place">Bilabial</th>
<th class="place">Labiodental</th>
<th class="place">Dental</th>
<th class="place">Alveolar</th>
<th class="place">Postalveolar</th>
<th class="place">Retroflex</th>
<th class="place">Palatal</th>
<th class="place"> Velar </th> <!-- Note: spaces to prevent MSIE from wrapping some symbols -->
<th class="place">Uvular</th>
<th class="place">Pharyngeal</th>
<th class="place">Glottal</th>
</tr>
</thead>
<tbody>
<tr>
<th class="manner">Plosive</th>
<td>
<span title="U+0070: LATIN SMALL LETTER P" class='voiceless'>p</span>
<span title="U+0062: LATIN SMALL LETTER B" class='voiced'>b</span>
</td>
<td></td>
<td></td>
<td>
<span title="U+0074: LATIN SMALL LETTER T" class='voiceless'>t</span>
<span title="U+0064: LATIN SMALL LETTER D" class='voiced'>d</span>
</td>
<td></td>
<td>
<span title="U+0288: LATIN SMALL LETTER T WITH RETROFLEX HOOK" class='voiceless'>ʈ</span>
<span title="U+0256: LATIN SMALL LETTER D WITH TAIL" class='voiced'>ɖ</span>
</td>
<td>
<span title="U+0063: LATIN SMALL LETTER C" class='voiceless'>c</span>
<span title="U+025F: LATIN SMALL LETTER DOTLESS J WITH STROKE" class='voiced'>ɟ</span>
</td>
<td>
<span title="U+006B: LATIN SMALL LETTER K" class='voiceless'>k</span>
<span title="U+0261: LATIN SMALL LETTER SCRIPT G" class='voiced'>ɡ</span>
</td>
<td>
<span title="U+0071: LATIN SMALL LETTER Q" class='voiceless'>q</span>
<span title="U+0262: LATIN LETTER SMALL CAPITAL G" class='voiced'>ɢ</span>
</td>
<td>
<span class='voiceless'></span>
<span class='voiced impossible'> </span>
</td>
<td>
<span title="U+0294: LATIN LETTER GLOTTAL STOP" class='voiceless'>ʔ</span>
<span class='voiced impossible'> </span>
</td>
</tr>
<tr>
<th class="manner">Nasal</th>
<td>
<span title="U+006D: LATIN SMALL LETTER M" class='voiced'>m</span>
</td>
<td>
<span title="U+0271: LATIN SMALL LETTER M WITH HOOK" class='voiced'>ɱ</span>
</td>
<td></td>
<td>
<span title="U+006E: LATIN SMALL LETTER N" class='voiced'>n</span>
</td>
<td></td>
<td>
<span title="U+0273: LATIN SMALL LETTER N WITH RETROFLEX HOOK" class='voiced'>ɳ</span>
</td>
<td>
<span title="U+0272: LATIN SMALL LETTER N WITH LEFT HOOK" class='voiced'>ɲ</span>
</td>
<td>
<span title="U+014B: LATIN SMALL LETTER ENG" class='voiced'>ŋ</span>
</td>
<td>
<span title="U+0274: LATIN LETTER SMALL CAPITAL N" class='voiced'>ɴ</span>
</td>
<td class="impossible"></td>
<td class="impossible"></td>
</tr>
<tr>
<th class="manner">Trill</th>
<td>
<span title="U+0299: LATIN LETTER SMALL CAPITAL B" class='voiced'>ʙ</span>
</td>
<td></td>
<td></td>
<td>
<span title="U+0072: LATIN SMALL LETTER R" class='voiced'>r</span>
</td>
<td></td>
<td></td>
<td></td>
<td class="impossible"></td>
<td>
<span title="U+0280: LATIN LETTER SMALL CAPITAL R" class='voiced'>ʀ</span>
</td>
<td></td>
<td class="impossible"></td>
</tr>
<tr>
<th class="manner">Tap or Flap</th>
<td></td>
<td>
<span title="U+2C71: LATIN SMALL LETTER V WITH RIGHT HOOK" class='voiced'>ⱱ</span>
</td>
<td></td>
<td>
<span title="U+027E: LATIN SMALL LETTER R WITH FISHHOOK" class='voiced'>ɾ</span>
</td>
<td></td>
<td>
<span title="U+027D: LATIN SMALL LETTER R WITH TAIL" class='voiced'>ɽ</span>
</td>
<td></td>
<td class="impossible"></td>
<td></td>
<td></td>
<td class="impossible"></td>
</tr>
<tr>
<th class="manner">Fricative</th>
<td>
<span title="U+0278: LATIN SMALL LETTER PHI" class='voiceless'>ɸ</span>
<span title="U+03B2: GREEK SMALL LETTER BETA" class='voiced'>β</span>
</td>
<td>
<span title="U+0066: LATIN SMALL LETTER F" class='voiceless'>f</span>
<span title="U+0076: LATIN SMALL LETTER V" class='voiced'>v</span>
</td>
<td>
<span title="U+03B8: GREEK SMALL LETTER THETA" class='voiceless'>θ</span>
<span title="U+00F0: LATIN SMALL LETTER ETH" class='voiced'>ð</span>
</td>
<td>
<span title="U+0073: LATIN SMALL LETTER S" class='voiceless'>s</span>
<span title="U+007A: LATIN SMALL LETTER Z" class='voiced'>z</span>
</td>
<td>
<span title="U+0283: LATIN SMALL LETTER ESH" class='voiceless'>ʃ</span>
<span title="U+0292: LATIN SMALL LETTER EZH" class='voiced'>ʒ</span>
</td>
<td>
<span title="U+0282: LATIN SMALL LETTER S WITH HOOK" class='voiceless'>ʂ</span>
<span title="U+0290: LATIN SMALL LETTER Z WITH RETROFLEX HOOK" class='voiced'>ʐ</span>
</td>
<td>
<span title="U+00E7: LATIN SMALL LETTER C WITH CEDILLA" class='voiceless'>ç</span>
<span title="U+029D: LATIN SMALL LETTER J WITH CROSSED-TAIL" class='voiced'>ʝ</span>
</td>
<td>
<span title="U+0078: LATIN SMALL LETTER X" class='voiceless'>x</span>
<span title="U+0263: LATIN SMALL LETTER GAMMA" class='voiced'>ɣ</span>
</td>
<td>
<span title="U+03C7: GREEK SMALL LETTER CHI" class='voiceless'>χ</span>
<span title="U+0281: LATIN LETTER SMALL CAPITAL INVERTED R" class='voiced'>ʁ</span>
</td>
<td>
<span title="U+0127: LATIN SMALL LETTER H WITH STROKE" class='voiceless'>ħ</span>
<span title="U+0295: LATIN LETTER PHARYNGEAL VOICED FRICATIVE" class='voiced'>ʕ</span>
</td>
<td>
<span title="U+0068: LATIN SMALL LETTER H" class='voiceless'>h</span>
<span title="U+0266: LATIN SMALL LETTER H WITH HOOK" class='voiced'>ɦ</span>
</td>
</tr>
<tr>
<th class="manner">Lateral fricative</th>
<td class="impossible"></td>
<td class="impossible"></td>
<td></td>
<td>
<span title="U+026C: LATIN SMALL LETTER L WITH BELT" class='voiceless'>ɬ</span>
<span title="U+026E: LATIN SMALL LETTER LEZH" class='voiced'>ɮ</span>
</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td class="impossible"></td>
<td class="impossible"></td>
</tr>
<tr>
<th class="manner">Approximant</th>
<td></td>
<td>
<span title="U+028B: LATIN SMALL LETTER V WITH HOOK" class='voiced'>ʋ</span>
</td>
<td></td>
<td>
<span title="U+0279: LATIN SMALL LETTER TURNED R" class='voiced'>ɹ</span>
</td>
<td></td>
<td>
<span title="U+027B: LATIN SMALL LETTER TURNED R WITH HOOK" class='voiced'>ɻ</span>
</td>
<td>
<span title="U+006A: LATIN SMALL LETTER J" class='voiced'>j</span>
</td>
<td>
<span title="U+0270: LATIN SMALL LETTER TURNED M WITH LONG LEG" class='voiced'>ɰ</span>
</td>
<td></td>
<td></td>
<td class="impossible"></td>
</tr>
<tr>
<th class="manner">Lateral approximant</th>
<td class="impossible"></td>
<td class="impossible"></td>
<td></td>
<td>
<span title="U+006C: LATIN SMALL LETTER L" class='voiced'>l</span>
</td>
<td></td>
<td>
<span title="U+026D: LATIN SMALL LETTER L WITH RETROFLEX HOOK" class='voiced'>ɭ</span>
</td>
<td>
<span title="U+028E: LATIN SMALL LETTER TURNED Y" class='voiced'>ʎ</span>
</td>
<td>
<span title="U+029F: LATIN LETTER SMALL CAPITAL L" class='voiced'>ʟ</span>
</td>
<td></td>
<td class="impossible"></td>
<td class="impossible"></td>
</tr>
</tbody>
</table>
<p>Where symbols appear in pairs, the one to the right represents a
voiced consonant. Shaded areas denote articulations judged
impossible.</p>
<p>If a consonant appears on its own, it is voiced, except for ʔ</p>
</div>
<div id="nonPulmonicConsonants">
<h2>Consonants (Non-Pulmonic)</h2>
<table>
<colgroup span="2" />
<colgroup span="2" />
<colgroup span="2" />
<thead>
<tr>
<th colspan="2">Clicks</th>
<th colspan="2">Voiced implosives</th>
<th colspan="2">Ejectives</th>
</tr>
</thead>
<tbody>
<tr>
<td title="U+0298: LATIN LETTER BILABIAL CLICK">ʘ</td>
<th>Bilabial</th>
<td title="U+0253: LATIN SMALL LETTER B WITH HOOK">ɓ</td>
<th>Bilabial</th>
<!--<td title="U+2019: RIGHT SINGLE QUOTATION MARK">’</td>-->
<td title="U+02BC: MODIFIER LETTER APOSTROPHE">ʼ</td><!-- thanks Dan McCloy: http://students.washington.edu/drmccloy/ -->
<th>Examples:</th>
</tr>
<tr>
<td title="U+01C0: LATIN LETTER DENTAL CLICK">ǀ</td>
<th>Dental</th>
<td title="U+0257: LATIN SMALL LETTER D WITH HOOK">ɗ</td>
<th>Dental/alveolar</th>
<td>pʼ<!--’--></td>
<th>Bilabal</th>
</tr>
<tr>
<td title="U+01C3: LATIN LETTER RETROFLEX CLICK">ǃ</td>
<th>(Post)alveolar</th>
<td title="U+0284: LATIN SMALL LETTER DOTLESS J WITH STROKE AND HOOK">ʄ</td>
<th>Palatal</th>
<td>tʼ<!--’--></td>
<th>Dental/alveolar</th>
</tr>
<tr>
<td title="U+01C2: LATIN LETTER ALVEOLAR CLICK">ǂ</td>
<th>Palatoalveolar</th>
<td title="U+0260: LATIN SMALL LETTER G WITH HOOK">ɠ</td>
<th>Velar</th>
<td>kʼ<!--’--></td>
<th>Velar</th>
</tr>
<tr>
<td title="U+01C1: LATIN LETTER LATERAL CLICK">ǁ</td>
<th>Alveolar lateral</th>
<td title="U+029B: LATIN LETTER SMALL CAPITAL G WITH HOOK">ʛ</td>
<th>Uvular</th>
<td>sʼ<!--’--></td>
<th>Alveolar fricative</th>
</tr>
</tbody>
</table>
</div>
<div id="vowels">
<h2>Vowels</h2>
<div id="vowelQuadrilateral">
<img id="vowelBackground" src="vowelBackground.png" alt="Vowel Quadrilateral" />
<!--<embed src="vowelQuadrilateral.svg" type="image/svg+xml" pluginspage="http://www.adobe.com/svg/viewer/install/" />-->
<table>
<thead>
<tr>
<th></th>
<th>Front </th>
<th>Near-front</th>
<th>central</th>
<th>Near-back</th>
<th>Back</th>
</tr>
</thead>
<tbody>
<tr>
<th>Close</th>
<td>
<span class='unrounded' title="LATIN SMALL LETTER I">i</span>
<span class='rounded' title="U+0079: LATIN SMALL LETTER Y">y</span>
</td>
<td></td>
<td>
<span class='unrounded' title="U+0268: LATIN SMALL LETTER I WITH STROKE">ɨ</span>
<span class='rounded' title="U+0289: LATIN SMALL LETTER U BAR">ʉ</span>
</td>
<td></td>
<td>
<span class='unrounded' title="U+026F: LATIN SMALL LETTER TURNED M">ɯ</span>
<span class='rounded' title="U+0075: LATIN SMALL LETTER U">u</span>
</td>
</tr>
<tr>
<th>Near-close</th>
<td></td>
<td>
<span class='unrounded' title="U+026A: LATIN LETTER SMALL CAPITAL I">ɪ</span>
<span class='rounded' title="U+028F: LATIN LETTER SMALL CAPITAL Y">ʏ</span>
</td>
<td></td>
<td>
<span class='rounded' title="U+028A: LATIN SMALL LETTER UPSILON">ʊ</span>
</td>
<td></td>
</tr>
<tr>
<th> close-mid </th>
<td>
<span class='unrounded' title="U+0065: LATIN SMALL LETTER E">e</span>
<span class='rounded' title="U+00F8: LATIN SMALL LETTER O WITH STROKE">ø</span>
</td>
<td></td>
<td>
<span class='unrounded' title="U+0258: LATIN SMALL LETTER REVERSED E">ɘ</span>
<span class='rounded' title="U+0275: LATIN SMALL LETTER BARRED O">ɵ</span>
</td>
<td></td>
<td>
<span class='unrounded' title="U+0264: LATIN SMALL LETTER RAMS HORN">ɤ</span>
<span class='rounded' title="U+006F: LATIN SMALL LETTER O">o</span>
</td>
</tr>
<tr>
<th>Mid</th>
<td></td>
<td></td>
<td>
<span class='unrounded' title="U+0259: LATIN SMALL LETTER SCHWA">ə</span>
</td>
<td></td>
<td></td>
</tr>
<tr>
<th>Open-mid</th>
<td>
<span class='unrounded' title="U+025B: LATIN SMALL LETTER OPEN E">ɛ</span>
<span class='rounded' title="U+0153: LATIN SMALL LIGATURE OE">œ</span>
</td>
<td></td>
<td>
<span class='unrounded' title="U+025C: LATIN SMALL LETTER REVERSED OPEN E">ɜ</span>
<span class='rounded' title="U+025E: LATIN SMALL LETTER CLOSED REVERSED OPEN E">ɞ</span>
</td>
<td></td>
<td>
<span class='rounded' title="U+028C: LATIN SMALL LETTER TURNED V">ʌ</span>
<span class='rounded' title="U+0254: LATIN SMALL LETTER OPEN O">ɔ</span>
</td>
</tr>
<tr>
<th> near-open</th>
<td>
<span class='unrounded' title="U+00E6: LATIN SMALL LETTER AE">æ</span>
</td>
<td></td>
<td>
<span title="U+0250: LATIN SMALL LETTER TURNED A">ɐ</span>
</td>
<td></td>
<td></td>
</tr>
<tr>
<th> Open</th>
<td>
<span class='unrounded' title="U+0061: LATIN SMALL LETTER A">a</span>
<span class='rounded' title="U+0276: LATIN LETTER SMALL CAPITAL OE">ɶ</span>
</td>
<td></td>
<td></td>
<td></td>
<td>
<span class='unrounded' title="U+0251: LATIN SMALL LETTER ALPHA">ɑ</span>
<span class='rounded' title="U+0252: LATIN SMALL LETTER TURNED ALPHA">ɒ</span>
</td>
</tr>
</tbody>
</table>
</div>
<p class='caption'>Where symbols appear in pairs, the one to the right represents a rounded vowel.</p>
<p>For vowels that appear on its own: /ʊ/ is rounded, /ə/ and /æ/ are both unrounded, and /ɐ/ can be rounded or unrounded.</p>
</div>
<div id="otherSymbols">
<h2>Other Symbols</h2>
<table>
<colgroup>
<col width="0*" />
<col width="1*" />
</colgroup>
<colgroup>
<col width="0*" />
<col width="1*" />
</colgroup>
<tbody>
<tr>
<td title="U+028D: LATIN SMALL LETTER TURNED W">ʍ</td>
<th>Voiceless labial-velar fricative</th>
<td title="U+0255: LATIN SMALL LETTER C WITH CURL" class="firstOfTwoExamples">ɕ</td>
<td title="U+0291: LATIN SMALL LETTER Z WITH CURL" class="secondOfTwoExamples">ʑ</td>
<th>Alveolo-palatal fricatives</th>
</tr>
<tr>
<td title="U+0077: LATIN SMALL LETTER W">w</td>
<th>Voiced labial-velar approximant</th>
<td title="U+027A: LATIN SMALL LETTER TURNED R WITH LONG LEG" colspan="2">ɺ</td>
<th>Alveolar lateral flap</th>
</tr>
<tr>
<td title="U+0265: LATIN SMALL LETTER TURNED H">ɥ</td>
<th>Voiced labial-palatal approximant</th>
<td title="U+0267: LATIN SMALL LETTER HENG WITH HOOK" colspan="2">ɧ</td>
<th>Simultaneous <span title="U+0283: LATIN SMALL LETTER ESH" class="ipa">ʃ</span> and <span title="U+0078: LATIN SMALL LETTER X" class="ipa">x</span></th>
</tr>
<tr>
<td title="U+029C: LATIN LETTER SMALL CAPITAL H">ʜ</td>
<th>Voiceless epiglottal fricative</th>
<!-- <th rowspan="3" colspan="2">
<span id="tiebarExample" class="ipa"> kp͡ ts͡ </span>
<p id="tiebarNote">Affricates and double articulations
can be represented by two symbols
joined by a tie bar if necessary. <em>Note: Unicode does not support tie bars underneath.</em></p>
</th>
<td>k͡p</td>
<td>ts͡</td>
-->
<th rowspan="3" colspan="3" id='tiebar'>
<span id="tiebarExample">
<span class='ipa'>k͡p</span> <span class='ipa'>t͜s</span><br />
<span class='ipa' title="U+0361: COMBINING DOUBLE INVERTED BREVE">◌͡◌</span> <span class='ipa' title="U+035C: COMBINING DOUBLE BREVE BELOW">◌͜◌</span>
</span>
<p>Affricates and double articulations
can be represented by two symbols
joined by a tie bar if necessary. <!--<em>Note: Unicode does not support tie bars underneath.</em>--></p>
</th>
</tr>
<tr>
<td title="U+02A2: LATIN LETTER REVERSED GLOTTAL STOP WITH STROKE">ʢ</td>
<th>Voiced epiglottal fricative</th>
</tr>
<tr>
<td title="U+02A1: LATIN LETTER GLOTTAL STOP WITH STROKE">ʡ</td>
<th>Epiglottal plosive</th>
</tr>
</tbody>
</table>
</div>
<div id="suprasegmentals">
<h2>Suprasegmentals</h2>
<table>
<col width="0*" />
<col />
<col width="0*" />
<tbody>
<tr>
<td title="U+02C8: MODIFIER LETTER VERTICAL LINE" class="symbol">ˈ</td>
<th colspan="2">Primary stress</th>
</tr>
<tr>
<td title="U+02CC: MODIFIER LETTER LOW VERTICAL LINE" class="symbol">ˌ</td>
<th colspan="2">Secondary stress</th>
</tr>
<tr>
<td colspan="3" id="stressExample">ˌfoʊnəˈtɪʃən</td>
</tr>
<tr>
<td title="U+02D0: MODIFIER LETTER TRIANGULAR COLON" class="symbol">ː</td>
<th>Long</th>
<td class="example">eː</td>
</tr>
<tr>
<td title="U+02D1: MODIFIER LETTER HALF TRIANGULAR COLON" class="symbol">ˑ</td>
<th>Half-long</th>
<td class="example">eˑ</td>
</tr>
<tr>
<td title="U+0306: COMBINING BREVE" class="symbol">◌̆</td>
<th>Extra short</th>
<td class="example">ĕ</td>
</tr>
<tr>
<td title="U+007C: VERTICAL LINE" class="symbol">|</td>
<th colspan="2">Minor (foot) group</th>
</tr>
<tr>
<td title="U+2016: DOUBLE VERTICAL LINE" class="symbol">‖</td>
<th colspan="2">Major (intonation) group</th>
</tr>
<tr>
<td title="U+002E: FULL STOP" class="symbol">.</td>
<th>Syllable break</th>
<td class="example">ɹi.ækt</td>
</tr>
<tr>
<td title="U+203F: UNDERTIE" class="symbol">‿</td>
<th colspan="2">Linking (absence of a break)</th>
</tr>
</tbody>
</table>
</div>
<div id="diacritics">
<h2>Diacritics</h2>
<p>Diacritics may be placed above a symbol with a descender, e.g. <span class="ipa">ŋ̊</span></p>
<table>
<colgroup span="4">
<col width="0*" />
<col />
<col width="0*" />
<col width="0*" />
</colgroup>
<colgroup span="4">
<col width="0*" />
<col />
<col width="0*" />
<col width="0*" />
</colgroup>
<colgroup span="4">
<col width="0*" />
<col />
<col width="0*" />
<col width="0*" />
</colgroup>
<tbody>
<tr>
<td title="U+0325: COMBINING RING BELOW">◌̥</td>
<th>Voiceless</th>
<td class="leftExample">n̥</td>
<td class="rightExample">d̥</td>
<td title="U+0324: COMBINING DIAERESIS BELOW">◌̤</td>
<th>Breathy voiced</th>
<td class="leftExample">b̤</td>
<td class="rightExample">a̤</td>
<td title="U+032A: COMBINING BRIDGE BELOW">◌̪</td>
<th>Dental</th>
<td class="leftExample">t̪</td>
<td class="rightExample">d̪</td>
</tr>
<tr>
<td title="U+032C: COMBINING CARON BELOW">◌̬</td>
<th>Voiced</th>
<td class="leftExample">s̬</td>
<td class="rightExample">t̬</td>
<td title="U+0330: COMBINING TILDE BELOW">◌̰</td>
<th>Creaky voiced</th>
<td class="leftExample">b̰</td>
<td class="rightExample">a̰</td>
<td title="U+033A: COMBINING INVERTED BRIDGE BELOW">◌̺</td>
<th>Apical</th>
<td class="leftExample">t̺</td>
<td class="rightExample">d̺</td>
</tr>
<tr>
<td title="U+02B0: MODIFIER LETTER SMALL H">ʰ</td>
<th>Aspirated</th>
<td class="leftExample">tʰ</td>
<td class="rightExample">dʰ</td>
<td title="U+033C: COMBINING SEAGULL BELOW">◌̼</td>
<th>Linguolabial</th>
<td class="leftExample">t̼</td>
<td class="rightExample">d̼</td>
<td title="U+033B: COMBINING SQUARE BELOW">◌̻</td>
<th>Laminal</th>
<td class="leftExample">t̻</td>
<td class="rightExample">d̻</td>
</tr>
<tr>
<td title="U+0339: COMBINING RIGHT HALF RING BELOW">◌̹</td>
<th>More rounded</th>
<td class="leftExample">ɔ̹</td>
<td class="rightExample"></td>
<td title="U+02B7: MODIFIER LETTER SMALL W">ʷ</td>
<th>Labalized</th>
<td class="leftExample">tʷ</td>
<td class="rightExample">dʷ</td>
<td title="U+0303: COMBINING TILDE">◌̃</td>
<th colspan="2">Nasalized</th>
<td class="rightExample">ẽ</td>
</tr>
<tr>
<td title="U+031C: COMBINING LEFT HALF RING BELOW">◌̜</td>
<th>Less rounded</th>
<td class="leftExample">ɔ̜</td>
<td class="rightExample"></td>
<td title="U+02B2: MODIFIER LETTER SMALL J">ʲ</td>
<th>Palatalized</th>
<td class="leftExample">tʲ</td>
<td class="rightExample">dʲ</td>
<td title="U+207F: SUPERSCRIPT LATIN SMALL LETTER N">ⁿ</td>
<th colspan="2">Nasal release</th>
<td class="rightExample">dⁿ</td>
</tr>
<tr>
<td title="U+031F: COMBINING PLUS SIGN BELOW">◌̟</td>
<th>Advanced</th>
<td class="leftExample">u̟</td>
<td class="rightExample"></td>
<td title="U+02E0: MODIFIER LETTER SMALL GAMMA">ˠ</td>
<th>Velarized</th>
<td class="leftExample">tˠ</td>
<td class="rightExample">dˠ</td>
<td title="U+02E1: MODIFIER LETTER SMALL L">ˡ</td>
<th colspan="2">Lateral release</th>
<td class="rightExample">dˡ</td>
</tr>
<tr>
<td title="U+0320: COMBINING MINUS SIGN BELOW">◌̠</td>
<th>Retracted</th>
<td class="leftExample">e̠</td>
<td class="rightExample"></td>
<td title="U+02E4: MODIFIER LETTER SMALL REVERSED GLOTTAL STOP">ˤ</td>
<th>Pharyngealized</th>
<td class="leftExample">tˤ</td>
<td class="rightExample">dˤ</td>
<td title="U+031A: COMBINING LEFT ANGLE ABOVE">◌̚</td>
<th colspan="2">No audible release</th>
<td class="rightExample">d̚</td>
</tr>
<tr>
<td title="U+0308: COMBINING DIAERESIS">◌̈</td>
<th>Centralized</th>
<td class="leftExample">ë</td>
<td class="rightExample"></td>
<td title="U+0334: COMBINING TILDE OVERLAY">◌̴<!--~--></td>
<th colspan="2">Velarized or pharyngealized</th>
<td title="U+026B: LATIN SMALL LETTER L WITH MIDDLE TILDE" class="wideCell" colspan="5">ɫ</td>
<!--<th colspan="4"></th>-->
</tr>
<tr>
<td title="U+033D: COMBINING X ABOVE">◌̽</td>
<th>Mid-centralized</th>
<td class="leftExample">e̽</td>
<td class="rightExample"></td>
<td title="U+031D: COMBINING UP TACK BELOW">◌̝</td>
<th>Raised</th>
<td class="leftExample">e̝</td>
<th colspan="5" class="wideCell">(<span class="ipa">ɹ̝</span> = voiced alveolar fricative)</th>
</tr>
<tr>
<td title="U+0329: COMBINING VERTICAL LINE BELOW">◌̩</td>
<th>Syllabic</th>
<td class="leftExample">n̩</td>
<td class="rightExample"></td>
<td title="U+031E: COMBINING DOWN TACK BELOW">◌̞</td>
<th>Lowered</th>
<td class="leftExample">e̞</td>
<th colspan="5" class="wideCell">(<span class="ipa">β̞</span> = voiced bilabial approximant)</th>
</tr>
<tr>
<td title="U+032F: COMBINING INVERTED BREVE BELOW">◌̯</td>
<th>Non-syllabic</th>
<td class="leftExample">e̯</td>
<td class="rightExample"></td>
<td title="U+0318: COMBINING LEFT TACK BELOW">◌̘</td>
<th colspan="2">Advanced Tongue Root</th>
<td class="wideCell" colspan="5">e̘</td>
<!--<th colspan="4"></th>-->
</tr>
<tr>
<td title="U+02DE: MODIFIER LETTER RHOTIC HOOK">˞</td>
<th>Rhoticity</th>
<!--<td class="leftExample">ə˞</td>-->
<td class="leftExample" title="U+025A: LATIN SMALL LETTER SCHWA WITH HOOK">ɚ</td>
<td class="rightExample">a˞</td>
<td title="U+0319: COMBINING RIGHT TACK BELOW">◌̙</td>
<th colspan="2">Retracted Tongue Root</th>
<td class="wideCell" colspan="5">e̙</td>
<!--<th colspan="4"></th>-->
</tr>
</tbody>
</table>
</div>
<div id="tonesAndWordAccents">
<h2>Tones and Word Accents</h2>
<table>
<colgroup span="4">
<col />
<col width="0*" />
<col />
<col />
</colgroup>
<colgroup span="3" width="0*" />
<thead>
<tr>
<th colspan="4">Level</th>
<th colspan="4">Contour</th>
</tr>
</thead>
<tbody>
<!--
Though Doulos SIL supports the diacritics for contour-tones, it is Unicode 4.1 unofficial (the codes are in the PUA). It is going to be in Unicode 5.0:
1. U+030C COMBINING CARON
2. U+0302 COMBINING CIRCUMFLEX ACCENT
3. U+1DC4 COMBINING MACRON-ACUTE
4. U+1DC5 COMBINING GRAVE-MACRON
5. U+1DC8 COMBINING GRAVE-ACUTE-GRAVE
* U+1DC4 COMBINING MACRON-ACUTE
* U+1DC5 COMBINING GRAVE-MACRON
* U+1DC6 COMBINING MACRON-GRAVE
* U+1DC7 COMBINING ACUTE-MACRON
* U+1DC8 COMBINING GRAVE-ACUTE-GRAVE
* U+1DC9 COMBINING ACUTE-GRAVE-ACUTE
You might want to include these as a precursor to the upcoming new standard.
Update this chart to correspond to: http://upload.wikimedia.org/wikipedia/en/1/15/IPA_chart_2005.png
-->
<tr>
<td title="U+030B: COMBINING DOUBLE ACUTE ACCENT">e̋</td>
<th class="or">or</th>
<td title="U+02E5: MODIFIER LETTER EXTRA-HIGH TONE BAR">˥</td>
<th>Extra high</th>
<td title="U+030C: COMBINING CARON">ě</td>
<th class="or">or</th>
<td title="U+02E9 MODIFIER LETTER EXTRA-LOW TONE BAR, U+02E5 MODIFIER LETTER EXTRA-HIGH TONE BAR">˩˥</td>
<th>Rising</th>
</tr>
<tr>
<td title="U+0301: COMBINING ACUTE ACCENT">é</td>
<th class="or"></th>
<td title="U+02E6 MODIFIER LETTER HIGH TONE BAR" >˦</td>
<th>High</th>
<td title="U+0302: COMBINING CIRCUMFLEX ACCENT">ê</td>
<th class="or"></th>
<td title="U+02E5 MODIFIER LETTER EXTRA-HIGH TONE BAR, U+02E9 MODIFIER LETTER EXTRA-LOW TONE BAR">˥˩</td>
<th>Falling</th>
</tr>
<tr>
<td title="U+0304: COMBINING MACRON">ē</td>
<th class="or"></th>
<td title="U+02E7: MODIFIER LETTER MID TONE BAR">˧</td>
<th>Mid</th>
<td title="U+1DC4: COMBINING MACRON-ACUTE">e᷄</td>
<th class="or"></th>
<td title="U+02E6 MODIFIER LETTER HIGH TONE BAR, U+02E5 MODIFIER LETTER EXTRA-HIGH TONE BAR">˦˥</td>
<th>High rising</th>
</tr>
<tr>
<td title="U+0300: COMBINING GRAVE ACCENT">è</td>
<th class="or"></th>
<td title="U+02E8: MODIFIER LETTER LOW TONE BAR">˨</td>
<th>Low</th>
<td title="U+1DC5: COMBINING GRAVE-MACRON">e᷅</td>
<th class="or"></th>
<td title="U+02E9 MODIFIER LETTER EXTRA-LOW TONE BAR, U+02E8 MODIFIER LETTER LOW TONE BAR">˩˨</td>
<th>Low rising</th>
</tr>
<tr>
<td title="U+030F: COMBINING DOUBLE GRAVE ACCENT">ȅ</td>
<th class="or"></th>
<td title="U+02E9: MODIFIER LETTER EXTRA-LOW TONE BAR">˩</td>
<th>Extra low</th>
<td title="U+1DC8: COMBINING GRAVE-ACUTE-GRAVE">e᷈</td>
<th class="or"></th>
<td title="U+02E7 MODIFIER LETTER MID TONE BAR, U+02E6 MODIFIER LETTER HIGH TONE BAR, U+02E7 MODIFIER LETTER MID TONE BAR">˧˦˧</td>
<th>Rising-falling</th>
</tr>
<!-- Note: there are more tone contour letters than displayed on the official chart -->
<tr>
<td title="U+2193: DOWNWARDS ARROW">↓</td>
<th colspan="3">Downstep</th>
<td title="U+2197: NORTH EAST ARROW">↗</td>
<th colspan="3">Global rise</th>
</tr>
<tr>
<td title="U+2191: UPWARDS ARROW">↑</td>
<th colspan="3">Upstep</th>
<td title="U+2198: SOUTH EAST ARROW">↘</td>
<th colspan="3">Global fall</th>
</tr>
</tbody>
</table>
<!--<p>Note: these last four are not tech</p>-->
</div>
</div>
<div id="footer">
<hr />
<p>
This chart requires a Unicode font; for best results, use the
<a target="_top" href="http://scripts.sil.org/CharisSILfont">Charis SIL</a>,
<a target="_top" href="http://scripts.sil.org/DoulosSILfont">Doulos SIL</a>, or
<a target="_top" href="http://scripts.sil.org/Gentium">Gentium</a> Unicode fonts.
<!--This chart is coded to standards defined by the W3C and
therefore a standards-complaint browser will yield the best
results, especially <a target="_top" href="http://www.getfirefox.com/">Mozilla
Firefox</a> or <a target="_top" href="http://opera.com/">Opera 9+</a>.-->
<!--A mimimum screen resolution of 1024×768 is also required. -->
<span id="keyboardRefFoot">To easily copy and type the IPA
symbols and characters found in this chart, use the <a
href="keyboard/">IPA Unicode “Keyboard”</a>, which is built off
of this document.</span>
</p>
<p>
To see recent changes, visit the <a href="https://github.com/westonruter/ipa-chart/" target="_top">GitHub repo</a>.
If you have corrections or suggestions, please see the <a href="https://github.com/westonruter/ipa-chart/issues" target="_top">issues</a>.
Please feel free to fork the repo to implement the changes yourself and then issue a pull request back to me.
</p>
<div id='footerBoilerplate'>
<address>
<a target="_top" rel="author" href="http://westonruter.github.com/">Weston Ruter</a><br />
2009-10-20
</address>
<div id='copyright'>The <!--<a href="http://www.arts.gla.ac.uk/IPA/ipa.html">-->International
Phonetic Association<!--</a>--> is the copyright owner of the
International Phonetic Alphabet and the IPA chart.
The code is copyright © 2004-2009, Weston Ruter.</div>
</div>
</div>
</body>
</html>