I have this function:
function Get-ChildItemUnix {
Get-ChildItem $Args[0] |
Format-Table Mode, @{N='Owner';E={(Get-Acl $_.FullName).Owner}}, Length, LastWriteTime, @{N='Name';E={if($_.Target) {$_.Name+' -> '+$_.Target} else {$_.Name}}}
}
New-Alias ll Get-ChildItemUnix
From this question
The thing is that I can see thar I want to show Icons in the result of the function like the ls command
The ll personalized command result is this


You can use Unicode characters like and as you use any other character like 'a' or 'b' as long as the underlying font includes them.
A small example that you can build from is the following. Printing names of the content of the current directory with with a different symbol depending whether it is a file or a folder.