Software >> OS >> Windows >> Command Line >> How to output special characters from batch command

Example to output angled brackets (<)

@SETLOCAL ENABLEEXTENSIONS
@SETLOCAL DISABLEDELAYEDEXPANSION
@echo ^<content-type: text/html^>
@echo.
@echo.^<html^>^<body^>
@echo.Hello world
@echo.^</body^>^</html^>