How to filter bbPress replies (content)?

The solution found:

add_filter('bbp_get_topic_content', 'custommm_functiooonn');
add_filter('bbp_get_reply_content', 'custommm_functiooonn');
function custommm_functiooonn($content){
  return 'hiiiiiiii'.$content;
  }