Consider the following MWE
\documentclass{article}
\usepackage{amsthm}
\usepackage{hyperref}
\theoremstyle{plain}
\newtheorem{theorem}{Theorem}[section]
\theoremstyle{definition}
\newtheorem{examplex}[theorem]{Example}
\newtheorem*{continuedex}{Example \continuedexref\space Continued}
\newtheorem*{example*}{Example}
\newenvironment{examcont}[1]
{\newcommand{\continuedexref}{\ref*{#1}}\continuedex}
{\endcontinuedex}
\newenvironment{example}
{\pushQED{\qed}\renewcommand{\qedsymbol}{$\triangle$}\examplex}
{\popQED\endexamplex}
\begin{document}
\section{Foo}
\begin{example}
\label{exa:foo}
A numbered example.
\end{example}
\begin{examcont}{exa:foo}
An example continued.
\end{examcont}
\begin{example*}
An unnumbered example.
\end{example*}
\end{document}
This uses i) this answer to add an end mark to the example environment and ii) this answer to allow for for continued examples.
Currently I only have the end triangle mark for the standard example environment. I want to have the end mark for both the continued example and the star (unnumbered) example. How can I achieve this?



\hfill$\triangle$to the end of your environment content? As in,\newenvironment{examcont}[1] {\newcommand{\continuedexref}{\ref*{#1}}\continuedex} {\hfill$\triangle$\endcontinuedex}– Steven B. Segletes Oct 08 '14 at 20:10