UL mit Pfeil und Hangindent für Text

ul.listeMitPfeil { 
	list-style-type:none;
	list-style-position: outside;
	padding-left: 18px;
text-indent: -18px;
}

ul.listeMitPfeil li:before {
	content: "\25BA" " "; 
}

/* ----- alternativ ---------------------- */
ul.listeMitPfeil {
	list-style-type: none;
	list-style-position: outside;
	padding-left: 1em;
	text-indent: -1em;
}

ul.listeMitPfeil li::before {
	content: "\f502";
	display: inline-block;
	color: #006633;
	-webkit-font-smoothing: antialiased;
	font: normal 1em 'dashicons';
	padding-right: 1em;
}


/* https://unicode-table.com/de/ */