query-8e40b763d668bfad05fe23c430e09379

rq turtle/ttl

Unicode characters for parts of English Alphabet without Unicode hex codepoint qualifier SElECT ?item ?itemLabel ?unicode_character ?unicode_character_statement WHERE { ?item wdt:P361 wd:Q754673 . # ?item is part of English Alphabet ?item p:P487 ?unicode_character_statement . ?unicode_character_statement ps:P487 ?unicode_character . MINUS { ?unicode_character_statement pq:P4213 [] . } # Only results without Unicode hex codepoint qualifier SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Unicode characters for parts of English Alphabet without Unicode hex codepoint qualifier
SElECT ?item ?itemLabel ?unicode_character ?unicode_character_statement
WHERE
{
  ?item wdt:P361 wd:Q754673 . # ?item is part of English Alphabet
  ?item p:P487 ?unicode_character_statement .
  ?unicode_character_statement ps:P487 ?unicode_character .
  MINUS { ?unicode_character_statement pq:P4213 [] . } # Only results without Unicode hex codepoint qualifier
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v3("?unicode_character"):::projected v2("?unicode_character_statement"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c2(["wd:Q754673"]):::iri c9(["en"]):::literal v1 --"p:direct/P361"--> c2 v1 --"p:P487"--> v2 v2 --"p:statement/P487"--> v3 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v2 --"p:qualifier/P4213"--> a1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end