diff --git a/src/Text/Pandoc/Writers/HTML.hs b/src/Text/Pandoc/Writers/HTML.hs
index 97c5dabea..576a21dd7 100644
--- a/src/Text/Pandoc/Writers/HTML.hs
+++ b/src/Text/Pandoc/Writers/HTML.hs
@@ -638,7 +638,8 @@ blockListToNote opts ref blocks =
-- that block. Otherwise, insert a new Plain block with the backlink.
let backlink = [RawInline "html" $ " "]
+ " title=\"Jump back to footnote " ++ ref ++ "\">" ++
+ (if writerAscii opts then "↩" else "↩") ++ ""]
blocks' = if null blocks
then []
else let lastBlock = last blocks