How can I add the French trademark symbol (MD)?
Asked Answered
K

4

11

I have a report that needs to be output in either English or French (based on a field value).

I have copied the text from the Word document to the SSRS package, and all French characters show as they should except MD (marque déposée). This should show similar to superscript "MD", but it shows as normal script "MD".

Is there a library of French symbols that I can add, or is there a way to format it so that it "appears" right?

I have tried:

  • adding MD to a separate textbox and formatting it so it looks right, and having the 2 textboxes overlap, but when printed the second textbox relocates to below the first on the page.
  • printing the French paragraph as an image, but it does not appear as clear as the printed English page.
Kalif answered 19/2, 2013 at 14:44 Comment(0)
R
8

For situations like this unicode superscript characters can come in handy. I copied the unicode for the letters MD from the link into the SSRS report and it worked no problem.

Example:

  • MD = ᴹᴰ
  • TM = ᵀᴹ

Unicode:

Ro answered 19/2, 2013 at 18:5 Comment(7)
I'm not seeing the codes for M in superscript or D in superscript.Kalif
Yes, could you clarify where you get Unicode codes for m, d and t letters?Kathleenkathlene
See updated answer. I only have Windows 7 x64, but I do not think that makes a difference.Ro
I was unable to manually enter the character, but I was able to copy the character from the website to the textbox.Kalif
This unfortunately would not appear to work for MC, as the only unicode superscript capitalized C that I found, 1D9C, does not match with that M, 7481: ᴹᶜEyeless
Just to note for reference, MC = TM and MD = R.Eyeless
How do you do MC? 1F16A 🅪, HTML 🅪 does not work either.Rockies
E
8

The MC and MD symbols do appear as single superscript symbols in Unicode, though not necessarily in all fonts, as 1F16A and 1F16B respectively:

  • MC = marque de commerce, Unicode 1F16A 🅪, HTML 🅪 (in English TM trade mark sign)
  • MD = marque déposée, Unicode 1F16B 🅫, HTML 🅫 (in English R registered sign)

These symbols are generally used in Canadian French.

Sources:

Eyeless answered 25/3, 2015 at 18:5 Comment(1)
Unfortunatley most fonts don´t support these characters for example arial does not support 1F16A for MC 🅪. Also 1F16B 🅫 does not work.Rockies
M
2

The symbol does not exist as a separate character (unlike the “™” symbol), so this is essentially a matter of rendering some letters in superscript style. There are several alternatives, with different pros and cons:

  1. Use <sup>MD</sup>. Simple, but results in poor rendering: line spacing may get disturbed, and the letters appear as reduced-size capital letters, suffering from reduced stroke width, so they stylistically differ from normal letters.
  2. Use <span class=sup>MD</span> and style it with CSS, using relative positioning and font size reduction. Avoids some drawbacks of method 1, but not all.
  3. Use special characters, as mentioned in @BrotherOdin’s answer: MODIFIER LETTER CAPITAL M (U+1D39) and MODIFIER LETTER CAPITAL D (U+1D30), which you can insert e.g. as &#7481;&#7472;. The main problem with them is that not all fonts contain them, and their visual appearance may differ from your expectations – they are really designed for use in phonetic notations rather than normal text.
  4. Use <span class=sup>MD</span> and style it with font-feature-settings: "sups" and its browser-prefixed versions, and use OpenType fonts that have superscript glyph variants for letters. This is the theoretically best approach, but currently fails too often (partly due to limited browser support, partly due to lack of such OpenType features in most fonts).
Mansuetude answered 11/12, 2013 at 11:43 Comment(0)
T
0

The answer solved is here, we need to copy these two strange characters ᴹ (Modifier Letter Capital M) and ᴰ (Modifier Letter Capital D), and together ᴹᴰ. By using the Modifier Letter Capital M & D, we have ᴹᴰ.

Full Article can be found here: https://sourcedcode.com/blog/aem/content/how-can-i-add-the-french-trademark-symbol-md-to-my-website

Trusty answered 31/7 at 7:33 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.