Private/Convert-Icon.ps1

function Convert-Icon
{
    param
    (
        [Parameter(Mandatory = $true)]
        [string]$Icon
    )

    switch -Wildcard ($Icon)
    {
        '01d' { '☀️' }
        '01n' { '🌙' }
        '02?' { '🌤️' }
        '03?' { '⛅️' }
        '04?' { '☁️' }
        '09?' { '🌦️' }
        '10?' { '🌧️' }
        '11?' { '⛈️' }
        '13?' { '❄️' }
        '50?' { '😶‍🌫️' }
    }
}