Character ue4

Yeah, that’ll work.

To answer your earlier question: You sound like you’re asking “What’s the minimum number of triangles I can have in a static mesh?” and the answer is 1.
Whats the minimum number of triangles a “Character” needs? Zero. You can create game characters which don’t have an attached static mesh (which may be common for player controllable cameras).

You might be asking “What is the maximum number of triangles I can have in a static mesh?”
I think the answer to that is very dependent on what your hardware can support, but you can have millions of triangles on the screen at once. There is a finite number of triangles you can render before you start running into performance issues though, so what you need to be asking yourself is “How important is rendering the character in game compared to rendering the rest of the game objects?” and portion your triangle budget accordingly. You can also create some lower level of detail versions of a mesh and set those in the LOD portion of an object. UE4 will take care of the rest.

Really though, you’ll want to put a full scene from your game onto multiple computers (or your target platform) and just look at how the performance goes and adjust from there. 59k triangles may be just fine if your scene isn’t complex, or it may be too much if it is (ie, you have 100 characters each with 59k tris).