unity how to sspecify part of the text in bold in runtime unity code example
Example: how to change text to bold through script unity
//Do this for bold
GameObject.Find(/*PutTxtNameHerein""*/).GetComponent<Text>().fontStyle = FontStyle.Bold;
//and this for normal
GameObject.Find(/*PutTxtNameHerein""*/).GetComponent<Text>().fontStyle = FontStyle.Normal;