character in wpf
<!-- Display special characters that require special encoding: < > & " -->
<TextBlock>
  <    <!-- Less than symbol -->
  >    <!-- Greater than symbol -->
  &   <!-- Ampersand symbol -->
  "  <!-- Double quote symbol -->
</TextBlock>
<!-- Display miscellaneous special characters -->
<TextBlock>
  Cæsar   <!-- AE dipthong symbol -->
  © 2006  <!-- Copyright symbol -->
  Español <!-- Tilde symbol -->
  ¥       <!-- Yen symbol -->
</TextBlock>
