How to display "$ 0.0939" in lovelace?

I have an entityinput_number.bchydro_current_rate that current looks like this…

and it displays like this using the entities card…

image

How can I get it to look like $ 0.0939

Nailed it! Yet another custom sensor…
Thanks to berry07

- sensor:
  - name: BCHydro Current rate
    unique_id: bchydro_current_rate
    state: '$ {{ states("input_number.bchydro_current_rate") }}'

image

Or just set the input number step size to:

0.0001

Thanks for the input!
I think I like this better though…