Skip to content

Instantly share code, notes, and snippets.

@RicardoBritoBrens
Last active June 13, 2021 14:42
Show Gist options
  • Save RicardoBritoBrens/79bed4e30db09fca26f2d304f20aaaa8 to your computer and use it in GitHub Desktop.
Save RicardoBritoBrens/79bed4e30db09fca26f2d304f20aaaa8 to your computer and use it in GitHub Desktop.
Xamarin forms font symbols

Xamarin Forms font symbols

Symbol Name Code
& Ampersand &
< Open angle brackets or less than <
> Close angle brackets or greater than >
" Double quotes "

Example

<StackLayout>
	<Label Text="This is Ampersand symbol" TextColor="Black" FontSize="Large"></Label>
	<Label Text="&amp;" FontSize="Medium" TextColor="Red"></Label>
	<Label Text="This is less than symbol" TextColor="Black" FontSize="Large"></Label>
	<Label Text="&lt;" FontSize="Medium" TextColor="Red"></Label>
	<Label Text="This is greater than symbol" TextColor="Black" FontSize="Large"></Label>
	<Label Text="&gt;" FontSize="Medium" TextColor="Red"></Label>
	<Label Text="This is double quotes symbol" TextColor="Black" FontSize="Large"></Label>
	<Label Text="&quot;" FontSize="Medium" TextColor="Red"></Label>
</StackLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment