项目符号 (•) 作为密码输入占位符

Bullet Points (•) as Password Input Placeholder

我正在尝试让一个输入字段有一个占位符,其中包含要点

= f.label "Password"
= f.password_field :password, autocomplete: "off", 
    placeholder: "eg. •"

这给了我以下 html 输出:

<div class="field">
  <label for="user_Password">Password</label>
  <input value="password" autocomplete="off" placeholder="eg. &bull;" type="password" name="user[password]" id="user_password">
</div>

输入占位符实际上显示 &bull; 我希望它显示项目符号的地方。

关于如何让占位符显示项目符号的任何想法?

我试图在 CodePen 上重现错误;但是,它在那里工作:CodePen Example

我也尝试过使用另一个版本的编码:&#8226; 产生相同的输出。

注意 - 我正在使用 Rails 4.2.0 和 Slim template language

尝试使用 raw:

= f.label "Password"
= f.password_field :password, autocomplete: "off", 
    placeholder: raw("&bull;")