Placing Unicode character in CSS content value
This question already has an answer here:
Why don't you just save/serve the CSS file as UTF-8?
nav a:hover:after {
content: "↓";
}
If that's not good enough, and you want to keep it all-ASCII:
nav a:hover:after {
content: "2193";
}
The general format for a Unicode character inside a string is