The octal numeral system, or oct for short, is the base-8 numeral system, using the digits 0 to 7. Often used to notate Unix permissions. It has also used to store the on/off state of digital seven-segment displays.

learn more… | top users | synonyms

2
votes
1answer
25 views

How do I convert among printed decimal/octal/hex/UTF-8 representations of a UTF-8 character from the command-line?

In another question someone suggested echo -e with \0<sequence> for octal, and \x<sequence> for hex. E.g.: echo -e "\\0302\\0241" --> ¡ Is there a simple way to convert in the other ...
1
vote
2answers
85 views

Scala 2.10 - Octal escape is deprecated - how to do octal idiomatically now?

See https://issues.scala-lang.org/browse/SI-5205 and https://github.com/scala/scala-dist/pull/20 Octal escape value leading 0 has been deprecated from scala and I don't see an idiomatic alternative. ...
0
votes
6answers
60 views

how to set value of octal in java?

I am trying to write following code.but it gives me error kindly help me. int six=06; int seven=07; int abc=018; int nine=011; System.out.println("Octal 011 ="+nine); ...
1
vote
2answers
69 views

Ruby does not escape oct on puts

I have a script that parses a large text file, extracts certain values (using line.split), and stores them in a text file. I am having problems with octal values not interpreting when they are saved ...
-1
votes
1answer
70 views

Validating octal to decimal conversion

I wrote a program too convert a 4 digit positive octal number too its decimal equivalent. However while trying too validate the user input(0-7) a problem occured. Within my for loop too prevent the ...
1
vote
0answers
60 views

240 bit radar word

I Have a project using a 240 bit Octal data format that will be coming in the serial port of Arduino uno at 2.4K RS232 converted to TTL. The 240 bits along with other things has range, azimuth and ...
-6
votes
2answers
61 views

Number systems bin to any, hex to any, oct to any [closed]

I'm gonna need some help from you pro coders out there i quite need a java program that will convert the ff with SOLUTION oct -> bin oct -> dec oct -> hex hex -> oct ...
0
votes
1answer
21 views

Octal number equations

So I'm reading a book on how binary bits are converted into octal numbers. When trying to explain the concept, they give this equation N= ...
-2
votes
1answer
72 views

How do I convert Octal to RGB in Java? [closed]

How would I even start to convert Octal to RGB (Color Codes).
0
votes
4answers
196 views

Cygwin sed: search/replace one single unprintable char using hex, octal or decimal

sorry for the simple question, but I have gone blind for four days studying and trying, and can't seem to strike the right syntax. Using sed on cygwin, I am trying to replace one single unprintable ...
-2
votes
1answer
84 views

String to octal in c++

String hexstr = "0x12AB450912AB450912AB450912AB450912AB4509"; I have a string which has 40 bytes in length. I need to convert the above string to octal (to 20 bytes) char *endp; strtoul(hexstr , ...
0
votes
1answer
65 views

In c++ , how do I determine when to exit my loop while converting octal numbers to decimals?

Please keep in mind that I am pretty much brand new to C++ and this is just a program i have to do for my class. I think i understand how I would actually do it. I am just not sure what to put as my ...
0
votes
1answer
49 views

Possible work around “Invalid Octal Digit” in char when typing Alt Keys

I am writing a program that executes the quadratic formula. My only problem is the actual formatting of the program. The alt keys that allow me to type the plus-minus sign and square root symbol are ...
0
votes
2answers
219 views

Conversion binary floating point to hex floating point

For example I have 0 100 1110 sign exponent mantisa this is equal to 3.75. How to convert it to hexadecimal or octal form? I have searched really hard for few hours. Please help. Could you help me ...
0
votes
0answers
158 views

Floating point number decimal->octal conversion

How to calculate floating number representation with the base (8) (for example)? I know the formula mantisa * base^exponent but do not know how to for example estimate octal value of 4.24(base 10) ...
-2
votes
5answers
186 views

C function to convert from decimal to octal [closed]

I am working on a homework problem that asks us to write a function in C that will convert from decimal to octal. Here's what I have so far int oct(int num) { if (num < 8) { return ...
3
votes
5answers
625 views

Hex to Octal Conversion Program Without Using Decimal or Binary

Today I was just playing around for basic conversions from one base to another. I goggled some code for converting from hex to octal, and I noticed that it mostly uses intermediate conversion to ...
0
votes
1answer
59 views

Creating Octal NumberSpinner in Dojo

I am trying to restrict dijit.form.NumberSpinner so that it will only accept an Octal Number between 0 and 0777. I tried to do this by setting the Constraints in the constructor and then overriding ...
5
votes
2answers
183 views

BigInteger Parse Octal String?

In Java, I could do //Parsing Octal String BigInteger b = new BigInteger("16304103460644701340432043410021040424210140423204",8); Then format it as I pleased b.toString(2); //2 for binary ...
3
votes
1answer
32 views

How to output octal values in ColdFusion

I have a series of octal values I'd like to output in their ASCII character equivalents. CHR does not seem to recognize an octal character when it sees it. Is there any straightforward way of doing ...
0
votes
1answer
46 views

Base8 API for Java

I want to encode byte[] to Base8 String i.e) 0 to 7. Ofcourse, Base64 is commonly used and is having lesser memory footprint. However, I am in need to do Base8 encoding. Is there any API available for ...
0
votes
3answers
74 views

Why can't java.util.Scanner see 0700 as a octal literal?

public static void main(String argv[]){ String a="0700"; Scanner s = new Scanner(a); while(s.hasNextLong()){ System.out.print(s.nextLong()+","); } ...
5
votes
5answers
359 views

Decimal To Octal Converter, last digit issue

I tried making a C program to convert a user entered decimal number to octal. I wrote the C code with my own logic without any research of how other users try to do it. It works fine for the number ...
-1
votes
5answers
2k views

Decimal to Octal Conversion [duplicate]

Possible Duplicate: Decimal Conversion error I am writing a program for a class and is having trouble figuring how to convert an octal number to an decimal number. Here is what I been ...
3
votes
4answers
168 views

Decimal Conversion error

I am writing a program that will convert octal numbers to decimals. It compiles right and everything but there is something majorily wrong with my conversion code. It seems perfectly logic to me, ...
2
votes
2answers
228 views

isHex() and isOcta() functions

I have Two Functions. IsOcta and isHex. Can not seem to make isHex work properly. Issue in isHex() is that it can not omit 'x' notation of the original string x23. Original hex srting can also be ...
0
votes
1answer
71 views

Display an object using NSLog with octal format in objective-c

I would like to display a file's permissions in octal. The code below works but only shows the permissions in decimal. Any ideas how I can convert the result to octal? %o doesnt show the correct ...
0
votes
0answers
35 views

How to convert a octal NSString into a int number?

I have a NSString which is in octal, for example, @"0xffaaee". How can I convert it to a int in Objective-C? Thanks
4
votes
2answers
95 views

String illegal escape charcter

While answering one of the question, I came across this interesting situation. If I have string like the following, Netbeans does not complain that it's an illegal start of expression. String ...
0
votes
0answers
311 views

“Calculations” of 6-digit octals in 8's complement, in layman's terms?

How does one find the postive/negative range of a 6-digit octal in 8's complement? From what I understand, it's simply half - 1: 000001 - 377777 positives, 400000 - 77777 negatives Would 377777 be ...
1
vote
2answers
795 views

Octal representation inside a string in C

In the given program: int main() { char *p = "\0777"; printf("%d %d %d\n",p[0],p[1],p[2]); printf("--%c-- --%c-- --%c--\n",p[0],p[1],p[2]); return 0; } It is showing the output as: 63 ...
1
vote
3answers
108 views

int lambda expressions with string/octals? (C++)

I've been given an open book test, and been told I can use any resources I need to be able to answer the questions as it's more of an aptitude test - and one question has me really stumped. The ...
8
votes
1answer
167 views

how to avoid python numeric literals beginning with “0” being treated as octal?

I am trying to write a small Python 2.x API to support fetching a job by jobNumber, where jobNumber is provided as an integer. Sometimes the users provide ajobNumber as an integer literal beginning ...
6
votes
2answers
233 views

Why are leading zeroes used to represent octal numbers?

I've always wondered why leading zeroes (0) are used to represent octal numbers, instead of — for example — 0o. The use of 0o would be just as helpful, but would not cause as many problems ...
-1
votes
2answers
530 views

Invalid octal digit error

Invalid octal digit error in Ruby, how do I by pass that? I have a number, 0962833, which I need to send to an API but I can't send it since I get this invalid octal digit error. I need a work around ...
3
votes
2answers
443 views

Using Python's stat function to efficiently get owner, group and other permissions

Question: How do I efficiently use the stat function to get meaningful file permissions (User, Group and Other). Details: I am querying the file permissions like so: statInfo = os.stat permissions ...
2
votes
1answer
226 views

Git: how to specify file names containing octal notation on the command line

For non-ASCII characters in file names, Git will output them in octal notation. For example: > git ls-files "\337.txt" If such a byte sequence does not represent a legal encoding (for the ...
3
votes
2answers
483 views

Binary , hexadecimal and octal values in mysql

I am very interested in working with binary , hexadecimal and octal systems in mysql database. First of all please give me an advice why we need them during storing information , because of ton of ...
0
votes
2answers
490 views

How do you convert a string into Octal in vb.net

Is it possible to convert a string of text from a textbox into Octal numbers? If so, please tell me how to convert octal to text and text to octal. Thanks Edit: Oh, now I understand how it works. I ...
-1
votes
1answer
144 views

single algorithm to convert octal to other number systems [closed]

I have come across a pretty neat algorithm to convert a decimal number to other number systems. program asks for two inputs: number to convert and the base. the output is the number in the base ...
-1
votes
1answer
308 views

Is there a work around for invalid octal digit in an array?

I'm trying to create an array which will hold the hours in a day so I can loop through it for a clock. I have: int hourArray[24] = {12, 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, 01, 02, ...
0
votes
2answers
427 views

what is the range of octal escape sequence in c?

Code #include<stdio.h> int main() { int i; printf("%d \n",'\1'); printf("%d \n",'\022'); printf("%d ",'\555'); return 0; } Output: 1 18 109 When we compile this program then gcc compiler ...
6
votes
5answers
2k views

Why do Java octal escapes only go up to 255?

The Java language specification states that the escapes inside strings are the "normal" C ones like \n and \t, but they also specify octal escapes from \0 to \377. Specifically, the JLS states: ...
3
votes
3answers
441 views

Converting octal and hexadecimal numbers to base 10

I am trying to understand javascript octal and hexadecimal computations. I know I can use parseInt(string, radix) to get the Integer value. For example, when I try this why are the values different? ...
0
votes
4answers
148 views

How do I parse non-integer octals in Java?

This may not be possible, but I figured it can't hurt to ask. I have a program that needs to convert non-integer decimals into octal notation. From what I can tell, Java can only handle integer octals ...
4
votes
2answers
171 views

C++ cout output explanation please [duplicate]

Possible Duplicate: why is initializing an integer in VC++ to 010 different from initialising it to 10? This got me very confused, and I hope one of you can answer my question. How come ...
0
votes
2answers
198 views

remove/replace octal escapes from html

I have octal escapes in my html(stored as a string), which displays on the browser as �. eg:- "Thanks for the update\205.nt" Is there a way to remove these from the string or make it render properly ...
2
votes
2answers
177 views

what is an octal byte, is this definition correct?

My instructor stated that "an octal byte consists of 6 bits". I am having difficulty understanding why this is, as an octal digit consists of 3 binary bits. I also do not understand the significance ...
10
votes
3answers
281 views

Why do PHP and JavaScript have problems dealing with octal and hexadecimal numbers?

I have noticed that PHP and JavaScript treat octal and hexadecimal numbers with some difficulty while type juggling and casting: PHP: echo 16 == '0x10' ? 'true' : 'false'; //true, as expected echo 8 ...
1
vote
1answer
485 views

PHP: fileperms() values and convert these

Here is something i dont understand: A file has the permission 0644 which if i use php´s fileperms() functions returns 16804 as integer if i make a var_dump(). What/where is the relation between the ...

1 2