How to type the small comma-like emphasize

I am reading the book 時をかける少女, and I understand the small commas in these pics are used as a tool for emphasizing, but does anyone know who to type them on a computer? I can’t seem to find the way to do it

Add furigana with ruby tags?

2 Likes

That seems like such an easy solution now that you said it :sweat_smile:
Thank you!

2 Likes

The character you are looking for is the sesame dot.

If it’s HTML that you’re writing then current browsers support it well enough for the following:

<!DOCTYPE html>
<html>
  <body>
    <style>
      p {
        writing-mode: tb-rl;
        font-family: meiryo;
      }
      em {
        text-emphasis: filled sesame;
        -webkit-text-emphasis: filled sesame;
      }
    </style>
    <p>
      せい!せい!<em>せい</em>!
    </p>
  </body>
</html>

will produce something like:

image

15 Likes

Nice, that’s so cool!

And what does “open sesame” look like? :stuck_out_tongue:

9 Likes

Like this:

image

11 Likes

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.