test2.nt 1.3 KB

12345678910
  1. <http://example.org/show/218> <http://www.w3.org/2000/01/rdf-schema#label> "That Seventies Show"^^<http://www.w3.org/2001/XMLSchema#string> . # literal with XML Schema string datatype
  2. <http://example.org/show/218> <http://www.w3.org/2000/01/rdf-schema#label> "That Seventies Show" . # same as above
  3. <http://example.org/show/218> <http://example.org/show/localName> "That Seventies Show"@en . # literal with a language tag
  4. <http://example.org/show/218> <http://example.org/show/localName> "Cette Série des Années Septante"@fr-be . # literal outside of ASCII range with a region subtag
  5. <http://example.org/show/\u0126\u014b\u015A> <http://example.org/show/localName> "Test Unicode \u0122 \u012c" . # <http://example.org/show/ĦŋŚ> [...] "Test Unicode Ģ Ĭ"
  6. <http://example.org/#spiderman> <http://example.org/text> "This is a multi-line\nliteral with many quotes (\"\"\"\"\")\nand two apostrophes ('')."^^<http://www.w3.org/2001/XMLSchema#string> .
  7. <http://en.wikipedia.org/wiki/Helium> <http://example.org/elements/atomicNumber> "2"^^<http://www.w3.org/2001/XMLSchema#integer> . # xsd:integer
  8. <http://en.wikipedia.org/wiki/Helium> <http://example.org/elements/specificGravity> "1.663E-4"^^<http://www.w3.org/2001/XMLSchema#double> . #xsd:double
  9. # A comment.
  10. # Another comment.