Combining Japanese characters with numbers without spacing can present formatting challenges. For example, with a string like "新しいフォルダ000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", the numbers may split to the second line. However, using a string like "新しいフォルダaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaazzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz", all content remains on a single line.
Applying word-wrap: break-all can force characters onto a new line, but numbers still default to a new line. Seeking a solution to display numbers and Japanese characters on the same line without splitting.