Get the SharePoint Server name where Central Admin is hosted

Let's say you need to find a server where Central admin is hosted. In a large scale environment, you have multiple servers for SharePoint. And the central admin is installed on any of your SharePoint servers.
 
 
Using PowerShell :
 
 Get-spwebapplication -includecentraladministration |
where {$_.DisplayName -match "SharePoint Central Administration*"} |
 select DisplayName,Url