SwiftUI Glyphs clipped, how do I show the entire glyph?

This code:

import SwiftUI

struct heightProblem: View {
    var body: some View {
      Text("\u{1D15E} \u{1D15F} \u{1D160} \u{1D161} \u{1D162} \u{1D163} \u{1D164}")
        .font(Font.largeTitle.bold())
        .frame(height: 50.0)
        .border(.red)
        .padding()
        .border(.green)
    }
}

#Preview {
    heightProblem()
}

Produces this display:

Note the clipping. Lowering the baseline by about 20 brings it into view, but this is a horrible fix for dynamic display

(The font is Noto, which works just fine in Xcode, but not in Safari for some reason.)

SwiftUI Glyphs clipped, how do I show the entire glyph?
 
 
Q