I have some IPA symbols in my table. Now without any IPA package, rectangle box appears instead of IPA symbols. However, after google search, I found a package named tipa. So I added the package and called it like
\textipa{paɦaɖ}
However, the result is after using tipa, the IPA symbols just vanished. How to solve this issue. Thank you.
\documentclass[12pt]{article}
\usepackage{xcolor}
\usepackage{listings}
\usepackage{booktabs}
\usepackage{array}
\usepackage{float}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage{polyglossia}
\usepackage{fontspec}
\setmainlanguage{english}
\setotherlanguage{bengali}
\newfontfamily\bengalifont[Script=Bengali]{Vrinda}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{makecell, tabularx}
\newcolumntype{L}{>{\raggedright\arraybackslash}X}
\usepackage{amsmath}
\usepackage{multirow}
\usepackage{amssymb}
\usepackage{tipa}
\usepackage{newfloat}
\DeclareFloatingEnvironment[
fileext=los,
listname={List of Diagrams},
name=Diagram,
placement=tbhp,
within=none,
]{diagram}
\begin{document}
\begin{table}[htb] % <--- "here", "top", "bottom"
\setcellgapes{2pt}
\makegapedcells
\caption{Text Text Text Text}
\begin{tabular}{lcr}
\toprule
\toprule
\makecell[lb]{Misspelled Word}
& \makecell[b]{Correct Word}
& \makecell[b]{Translation in English}\\
\midrule
\textbengali{পাহাড (IPA: \textipa{paɦaɖ})} & \textbengali{পাহাড়(IPA: paɦaɽ)} & Mountain \\
\textbengali{বিশেয(IPA: biʃedʒ)} & \textbengali{বিশেষ(IPA: biʃeʃ)} & Special \\
\textbengali{ফুটরল(IPA: pʰuʈrɔl)} & \textbengali{ফুটবল(IPA: pʰuʈbɔl)} & Football \\
\bottomrule
\bottomrule
\end{tabular}
\label{table9}
\end{table}
\end{document}

