LogoLogo
  • Internet Object 1.0
  • Internet Object
    • Abstract
    • The Poetic Principles of Internet Object
    • Objectives
    • Introducing Internet Object
  • The Structure
    • Internet Object Document
      • Header
      • Data Sections
    • Structural Elements
      • Structural Characters and Literals
      • Literals
      • Other Special Characters
      • Whitespaces
    • Values Representations
      • Objects
      • Arrays
      • Strings
        • Open Strings
        • Regular Strings
        • Raw Strings
      • Numeric Values
        • Number
        • BigInt
        • Decimal
        • Special Numeric Integer Formats
          • Hexadecimal
          • Octal
          • Binary
        • NaN and Infinity
      • Binary
      • Date and Time
      • Booleans
      • Nulls
    • Comments
    • Encoding
  • The Collections
    • Collection
    • Creating Collection
    • Collection Rules
    • Data Streaming
  • The Definitions
    • Definitions
    • Variables
    • Complex Schema
  • Schema Definition Language
    • Internet Object Schema
    • The structure
    • Data Types
      • Any
      • String
        • String Derived Types
          • Email
          • URL
          • Date
          • Time
          • DateTime
      • Number
        • Derived Types
          • int
          • byte
          • int16
          • int32
      • Object
      • Array
      • Bool
    • Dynamic Schema
    • Is Object, a MemberDef or a Schema?
  • Other
    • Best Practices
    • FAQs
    • Contributors
    • License
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
Export as PDF
  1. The Structure
  2. Values Representations
  3. Numeric Values
  4. Special Numeric Integer Formats

Octal

PreviousHexadecimalNextBinary

Last updated 10 months ago

Was this helpful?

Internet Object supports octal non-fractional integer values. The octal integer may be prefixed with optional plus or minus signs and must start with 0c or 0C literal characters. It is then followed by one or more octal digits.

The Structure of Octal Integer

Chars

Char Code

Detail

-

U+2010

Minus Sign

+

U+002B

Plus Sign

0

U+0030

Zero

C

U+0043

Latin uppercase letter C

c

U+0063

Latin lowercase letter c

Octal Digits

0-7

U+0030 to U+0037

ASCII digits - zero to seven

Some of the octal integer values are...

0c421, 0C1057, 0C42, 0c5457, +0c754222, -0C454

The octal format does not support fractional non-integer values!