{"id":695,"date":"2014-08-15T21:22:28","date_gmt":"2014-08-15T19:22:28","guid":{"rendered":"http:\/\/dev.bratched.fr\/fr\/?p=695"},"modified":"2014-08-15T21:22:28","modified_gmt":"2014-08-15T19:22:28","slug":"icones-segoe-ui-symbol-et-c","status":"publish","type":"post","link":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/","title":{"rendered":"Icones Segoe UI Symbol et C#"},"content":{"rendered":"<p>&nbsp;<\/p>\n<h1>Les ic\u00f4nes Segoe UI Symbol<\/h1>\n<p>Microsoft depuis Windows 8 recommande d&rsquo;utiliser des ic\u00f4nes provenant d&rsquo;une police de caract\u00e8res \u00ab\u00a0Segoe UI Symbol\u00a0\u00bb.<\/p>\n<p>C&rsquo;est tr\u00e8s pratique, il suffit de choisir cette fonte et de conna\u00eetre ensuite le code pour directement acc\u00e9der \u00e0 l&rsquo;image vectorielle de tr\u00e8s bonne qualit\u00e9, et personnalisable avec de la couleur.<\/p>\n<p>Certains caract\u00e8res ont une largeur nulle permettant \u00e9galement de faire un contour d&rsquo;une autre couleur ou encore de cr\u00e9er un cercle autour de l&rsquo;c\u00f4ne.<\/p>\n<p>Les palettes d&rsquo;ic\u00f4nes Segoe UI Symbol sont consultables sur diff\u00e9rents sites :<\/p>\n<p>exemple :<\/p>\n<ul>\n<li><a title=\"http:\/\/www.adamdawes.com\/windows8\/win8_segoeuisymbol.html\" href=\"http:\/\/www.adamdawes.com\/windows8\/win8_segoeuisymbol.html\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/www.adamdawes.com\/windows8\/win8_segoeuisymbol.html<\/a><\/li>\n<li><a href=\"http:\/\/www.kreativekorp.com\/charset\/font.php?font=Segoe+UI+Symbol\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/www.kreativekorp.com\/charset\/font.php?font=Segoe+UI+Symbol<\/a><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<p><a href=\"http:\/\/dev.bratched.fr\/fr\/wp-content\/uploads\/sites\/2\/2014\/08\/SgoeUiSymbol.png\"><img decoding=\"async\" loading=\"lazy\" class=\"alignnone  wp-image-698\" src=\"http:\/\/dev.bratched.fr\/fr\/wp-content\/uploads\/sites\/2\/2014\/08\/SgoeUiSymbol.png\" alt=\"SgoeUiSymbol\" width=\"423\" height=\"319\" srcset=\"https:\/\/bratched.com\/fr\/wp-content\/uploads\/sites\/2\/2014\/08\/SgoeUiSymbol.png 819w, https:\/\/bratched.com\/fr\/wp-content\/uploads\/sites\/2\/2014\/08\/SgoeUiSymbol-300x226.png 300w, https:\/\/bratched.com\/fr\/wp-content\/uploads\/sites\/2\/2014\/08\/SgoeUiSymbol-768x580.png 768w\" sizes=\"(max-width: 423px) 100vw, 423px\" \/><\/a><\/p>\n<p>&nbsp;<\/p>\n<p>C&rsquo;est assez simple, dans une application XAML, il suffit de codifier le caract\u00e8re avec les tags XML standards.<\/p>\n<p><!--more-->Exemple :<\/p>\n<pre class=\"lang:default decode:true\">&lt;TextBlock Text=\"&#x1F3A8;\" FontFamily=\"Segoe UI Symbol\" FontSize=\"40\" Foreground=\"Red\" \/&gt;<\/pre>\n<p><a href=\"http:\/\/dev.bratched.fr\/fr\/wp-content\/uploads\/sites\/2\/2014\/08\/PaletteCouleur.png\"><img decoding=\"async\" loading=\"lazy\" class=\"alignnone  wp-image-697\" src=\"http:\/\/dev.bratched.fr\/fr\/wp-content\/uploads\/sites\/2\/2014\/08\/PaletteCouleur.png\" alt=\"PaletteCouleur\" width=\"58\" height=\"52\" \/><\/a>Va afficher l&rsquo;icone \u00ab\u00a0palette de couleur\u00a0\u00bb\u00a0en\u00a0rouge et en taille 40.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<h1>C# , Char et les codes sup\u00e9rieurs \u00e0 0xFFFF<\/h1>\n<p>Comment g\u00e9n\u00e9rer cette ic\u00f4ne c\u00f4t\u00e9 C# ? (dans un objet en DataBinding par exemple)<\/p>\n<p>On trouve pas mal d&rsquo;exemples sur les blog et forums de discussion et ce qui est conseill\u00e9 est d&rsquo;utiliser le Char et le code d&rsquo;\u00e9chappement \u00ab\u00a0\\u\u00a0\u00bb.<\/p>\n<p>Exemple : Si l&rsquo;on veut une ic\u00f4ne dans notre texte, il suffit de coder :<\/p>\n<pre class=\"lang:default decode:true\">string Text = \"\\u2708\";<\/pre>\n<p>L&rsquo;exemple suivant correspondant \u00e0 un avion.<\/p>\n<p>Le probl\u00e8me avec les codes sup\u00e9rieurs \u00e0 FFFF, c&rsquo;est que la syntaxe pr\u00e9c\u00e9dente correspondant \u00e0\u00a0la valeur d&rsquo;un Char\u00a0(16 bits)\u00a0\u00a0n&rsquo;est plus support\u00e9e.<\/p>\n<p>Et dans notre cas pr\u00e9c\u00e9dent, l&rsquo;affichage de l&rsquo;ic\u00f4ne palette ne marche pas !<\/p>\n<pre class=\"lang:default decode:true\">string Text = \"\\u1F3A8\";  \/\/ Bad result<\/pre>\n<p>Deux caract\u00e8res correspondant \u00e0 d&rsquo;autres lettres seront affich\u00e9s au lieu de notre ic\u00f4ne.<\/p>\n<p>En effet, un\u00a0Char ne peut avoir une valeur &gt; FFFF et les codes de type 1F3000 ne sont pas manipulables de cette fa\u00e7on.<\/p>\n<p>Il reste \u00e9galement un autre probl\u00e8me comment parcourir les diff\u00e9rentes ic\u00f4nes pour les afficher (pour proposer un \u00e9cran de choix par exemple), la syntaxe \u00ab\u00a0\\uFFFF\u00a0\u00bb n&rsquo;est pas adapt\u00e9e.<\/p>\n<p>Il existe une autre fa\u00e7on de faire, plus propre je pense et plus \u00e9volutive.<\/p>\n<pre class=\"lang:default decode:true\">string Text = Char.ConvertFromUtf32(0x1F3A8);<\/pre>\n<p>Cette syntaxe accepte un nombre entier en entr\u00e9e et retourne le code en utf32 sans\u00a0contrainte de taille.<\/p>\n<p>Il est alors possible de renvoyer plusieurs ic\u00f4nes en parcourant tous les symboles d\u00e9sir\u00e9s (exemple : les 250 ic\u00f4nes de la tranche 1F400)<\/p>\n<pre class=\"lang:default decode:true\">for (int i = 0; i &lt; 250; i++)\n{\n   Icones.Add(new IconeViewModel\n   {\n        Text = Char.ConvertFromUtf32(0x1F400+i)\n   });\n}<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Les ic\u00f4nes Segoe UI Symbol Microsoft depuis Windows 8 recommande d&rsquo;utiliser des ic\u00f4nes provenant d&rsquo;une police de caract\u00e8res \u00ab\u00a0Segoe UI Symbol\u00a0\u00bb. C&rsquo;est tr\u00e8s pratique, il suffit de choisir cette fonte et de conna\u00eetre ensuite le code pour directement acc\u00e9der \u00e0 l&rsquo;image vectorielle de tr\u00e8s bonne qualit\u00e9, et personnalisable avec de la couleur. Certains caract\u00e8res [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[34,59,62,63],"tags":[92,4,93,58,7,8],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Bratched\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_FR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Bratched.fr | On parle Windows, C#, Apple, Android, Js, ...\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Icones Segoe UI Symbol et C# | Bratched.fr\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2014-08-15T19:22:28+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2014-08-15T19:22:28+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Icones Segoe UI Symbol et C# | Bratched.fr\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/#article\",\"name\":\"Icones Segoe UI Symbol et C# | Bratched.fr\",\"headline\":\"Icones Segoe UI Symbol et C#\",\"author\":{\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/author\\\/adminced\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/dev.bratched.fr\\\/fr\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2014\\\/08\\\/SgoeUiSymbol.png\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/#articleImage\"},\"datePublished\":\"2014-08-15T21:22:28+02:00\",\"dateModified\":\"2014-08-15T21:22:28+02:00\",\"inLanguage\":\"fr-FR\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/#webpage\"},\"articleSection\":\"C#, Universal Apps, Windows 8, Windows Phone, Icones, M-V-VM, Segoe UI, Universal apps, WPF, XAML\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bratched.com\\\/fr\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/category\\\/csharp\\\/#listItem\",\"name\":\"C#\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/category\\\/csharp\\\/#listItem\",\"position\":2,\"name\":\"C#\",\"item\":\"https:\\\/\\\/bratched.com\\\/fr\\\/category\\\/csharp\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/#listItem\",\"name\":\"Icones Segoe UI Symbol et C#\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/#listItem\",\"position\":3,\"name\":\"Icones Segoe UI Symbol et C#\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/category\\\/csharp\\\/#listItem\",\"name\":\"C#\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/#organization\",\"name\":\"Bratched.fr\",\"description\":\"On parle Windows, C#, Apple, Android, Js, ...\",\"url\":\"https:\\\/\\\/bratched.com\\\/fr\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/author\\\/adminced\\\/#author\",\"url\":\"https:\\\/\\\/bratched.com\\\/fr\\\/author\\\/adminced\\\/\",\"name\":\"Bratched\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/05352dcd40ece2c42e5ae2dd683b460b?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Bratched\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/#webpage\",\"url\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/\",\"name\":\"Icones Segoe UI Symbol et C# | Bratched.fr\",\"inLanguage\":\"fr-FR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/2014\\\/08\\\/15\\\/icones-segoe-ui-symbol-et-c\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/author\\\/adminced\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/author\\\/adminced\\\/#author\"},\"datePublished\":\"2014-08-15T21:22:28+02:00\",\"dateModified\":\"2014-08-15T21:22:28+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/bratched.com\\\/fr\\\/\",\"name\":\"Bratched.fr\",\"description\":\"On parle Windows, C#, Apple, Android, Js, ...\",\"inLanguage\":\"fr-FR\",\"publisher\":{\"@id\":\"https:\\\/\\\/bratched.com\\\/fr\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Icones Segoe UI Symbol et C# | Bratched.fr","description":"","canonical_url":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/#article","name":"Icones Segoe UI Symbol et C# | Bratched.fr","headline":"Icones Segoe UI Symbol et C#","author":{"@id":"https:\/\/bratched.com\/fr\/author\/adminced\/#author"},"publisher":{"@id":"https:\/\/bratched.com\/fr\/#organization"},"image":{"@type":"ImageObject","url":"http:\/\/dev.bratched.fr\/fr\/wp-content\/uploads\/sites\/2\/2014\/08\/SgoeUiSymbol.png","@id":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/#articleImage"},"datePublished":"2014-08-15T21:22:28+02:00","dateModified":"2014-08-15T21:22:28+02:00","inLanguage":"fr-FR","mainEntityOfPage":{"@id":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/#webpage"},"isPartOf":{"@id":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/#webpage"},"articleSection":"C#, Universal Apps, Windows 8, Windows Phone, Icones, M-V-VM, Segoe UI, Universal apps, WPF, XAML"},{"@type":"BreadcrumbList","@id":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/bratched.com\/fr#listItem","position":1,"name":"Home","item":"https:\/\/bratched.com\/fr","nextItem":{"@type":"ListItem","@id":"https:\/\/bratched.com\/fr\/category\/csharp\/#listItem","name":"C#"}},{"@type":"ListItem","@id":"https:\/\/bratched.com\/fr\/category\/csharp\/#listItem","position":2,"name":"C#","item":"https:\/\/bratched.com\/fr\/category\/csharp\/","nextItem":{"@type":"ListItem","@id":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/#listItem","name":"Icones Segoe UI Symbol et C#"},"previousItem":{"@type":"ListItem","@id":"https:\/\/bratched.com\/fr#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/#listItem","position":3,"name":"Icones Segoe UI Symbol et C#","previousItem":{"@type":"ListItem","@id":"https:\/\/bratched.com\/fr\/category\/csharp\/#listItem","name":"C#"}}]},{"@type":"Organization","@id":"https:\/\/bratched.com\/fr\/#organization","name":"Bratched.fr","description":"On parle Windows, C#, Apple, Android, Js, ...","url":"https:\/\/bratched.com\/fr\/"},{"@type":"Person","@id":"https:\/\/bratched.com\/fr\/author\/adminced\/#author","url":"https:\/\/bratched.com\/fr\/author\/adminced\/","name":"Bratched","image":{"@type":"ImageObject","@id":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/05352dcd40ece2c42e5ae2dd683b460b?s=96&d=mm&r=g","width":96,"height":96,"caption":"Bratched"}},{"@type":"WebPage","@id":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/#webpage","url":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/","name":"Icones Segoe UI Symbol et C# | Bratched.fr","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/bratched.com\/fr\/#website"},"breadcrumb":{"@id":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/#breadcrumblist"},"author":{"@id":"https:\/\/bratched.com\/fr\/author\/adminced\/#author"},"creator":{"@id":"https:\/\/bratched.com\/fr\/author\/adminced\/#author"},"datePublished":"2014-08-15T21:22:28+02:00","dateModified":"2014-08-15T21:22:28+02:00"},{"@type":"WebSite","@id":"https:\/\/bratched.com\/fr\/#website","url":"https:\/\/bratched.com\/fr\/","name":"Bratched.fr","description":"On parle Windows, C#, Apple, Android, Js, ...","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/bratched.com\/fr\/#organization"}}]},"og:locale":"fr_FR","og:site_name":"Bratched.fr | On parle Windows, C#, Apple, Android, Js, ...","og:type":"article","og:title":"Icones Segoe UI Symbol et C# | Bratched.fr","og:url":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/","article:published_time":"2014-08-15T19:22:28+00:00","article:modified_time":"2014-08-15T19:22:28+00:00","twitter:card":"summary","twitter:title":"Icones Segoe UI Symbol et C# | Bratched.fr"},"aioseo_meta_data":{"post_id":"695","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 02:51:48","updated":"2025-06-04 03:20:07","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/bratched.com\/fr\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/bratched.com\/fr\/category\/csharp\/\" title=\"C#\">C#<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tIcones Segoe UI Symbol et C#\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/bratched.com\/fr"},{"label":"C#","link":"https:\/\/bratched.com\/fr\/category\/csharp\/"},{"label":"Icones Segoe UI Symbol et C#","link":"https:\/\/bratched.com\/fr\/2014\/08\/15\/icones-segoe-ui-symbol-et-c\/"}],"_links":{"self":[{"href":"https:\/\/bratched.com\/fr\/wp-json\/wp\/v2\/posts\/695"}],"collection":[{"href":"https:\/\/bratched.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bratched.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bratched.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bratched.com\/fr\/wp-json\/wp\/v2\/comments?post=695"}],"version-history":[{"count":0,"href":"https:\/\/bratched.com\/fr\/wp-json\/wp\/v2\/posts\/695\/revisions"}],"wp:attachment":[{"href":"https:\/\/bratched.com\/fr\/wp-json\/wp\/v2\/media?parent=695"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bratched.com\/fr\/wp-json\/wp\/v2\/categories?post=695"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bratched.com\/fr\/wp-json\/wp\/v2\/tags?post=695"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}