Template to convert entity C to °C - help please

I want to plot two temperatures on one graph and then probably go on from there to plot only the diffference between the two.
One is a standard °C entity.
The other is coming from Modbus (PMG_TEMP) where they only accept C as the unit of measurement.
I was thinking I could add a template something like below to convert C to °C but this does not seem to work - any ideas please:

      - name: "Turbine Temperature (°C)"
        unit_of_measurement: "°C"
        device_class: "temperature"
        state_class: "measurement"
        state: "{states('sensor.PMG_TEMP')}"

Create a template helper like this:

use

unit_of_measurement: ‘°C’

not „“

I now have this but is is not working:

      - name: "Turbine Temperature (°C)"
        unit_of_measurement: '°C'
        device_class: "temperature"
        state_class: "measurement"
        state: "{{states('sensor.PMG_TEMP') | float(0)}}}"

One } too many ?

You don’t need a template sensor for this.

Use manual customization. e.g.

configuration.yaml

homeassistant:
  customize: 
    sensor.pmg_temp:
      unit_of_measurement: "°C"

Also the reason your template sensors are not working is because you are using capital letters in your entity id. Entity ids are always lower case.

Of course - thank you - now running - excellent
Thanks all!

Final yaml:

      - name: "Turbine Temperature (°C)"
        unit_of_measurement: '°C'
        device_class: "temperature"
        state_class: "measurement"
        state: "{{states('sensor.PMG_TEMP') | float(0)}}"

As I said, you do not need another entity for this. You can change the unit of the original sensor.