The glyph for \oiint is not in the MathJax TeX fonts, and so there is no macro for it by default. If you are using MathJax v2, you can load the mediawiki-texvc extension, which defines it (and a number of other similar macros). If you are using version 3 of Mathjax, you can use
<script>
MathJax = {
tex: {
macros: {
unicodeInt: ['\\mathop{\\vcenter{\\mathchoice{\\huge\\unicode{#1}}{\\unicode{#1}}{\\unicode{#1}}{\\unicode{#1}}}}\\nolimits', 1],
oiint: '\unicodeInt{x222F}'
}
}
</script>
to define \oiint. Note that the character used for the integral will be taken from a system font installed on the user's computer, so it may or may not look like you would want it to. The quality will depend on the fonts available on the user's system, and they likely will not match the other integrals in your expressions.
In version 2, you can select the STIX fonts if you are using SVG or HTML-CSS output for better consistency, as the STIX fonts do include the needed character.
Davide