#requires -version 2.0 #1 write-host (([char]3 -as [string])*14) -ForegroundColor red #2 $s="Be My Valentine" [string]$hrt=[char]3 $s.split() | foreach -begin {$a="" }{$a+= "$_$hrt"} -end {write-host $a -ForegroundColor Magenta} #alternative $s.split() | foreach {Write-Host $_ -nonewline -ForegroundColor Magenta; Write-Host $hrt -nonewline -ForegroundColor Red} -end {"`n"} #3 Write-Host "U make my $([char]3) $([char]14)" -ForegroundColor magenta -BackgroundColor yellow #variation from Josh Atwell Write-Host "Wild thing!" -ForegroundColor Yellow -BackgroundColor Magenta Start-Sleep -Seconds 1 Write-Host "U make my $([char]3) $([char]14)" -ForegroundColor magenta -BackgroundColor yellow #4 write-host "$([char]12)$([char]3)$([char]11)=$([char]2)" -ForegroundColor red -BackgroundColor white