How do I add text in a shortcode?

hello you can try this

// Add Shortcode
function text_shortcode( $atts , $content = null ) {
  // Code
  return '<div>' . $content . '</div>';
}
add_shortcode( 'b', 'text_shortcode' );

The shortcode will be something like this

[b] content [/b]