რიცხვების საფუძველის გადამცვლელი
რიცხვების გადაქცევა ბინარული, ოქტეტალური, ათობითი და თორმეტიანი სისტემების შორის.
[Translation temporarily unavailable. Please try again.]
ამ კალკულატორის შესახებ
number base converter reads the value in the source base, works out its plain decimal value, and re-expresses that value in the target base. It reads your value in the source base, works out its plain decimal value, and re-expresses that value in the target base. It reads your value in the source base, works out its plain decimal value, and re-expresses that value in the target base. It reads your value in the source base, works out its plain decimal value, and re-expresses that value in the target base. It reports the intermediate decimal value so you can check the working.Worked example: the decimal number 255 is 11 in binary and FF in hexadecimal, since 255 = 15×16 + 15.Worked example: the decimal number 255 is 11 in binary and FF in hexadecimal, since 255 = 15×16 + 15.Worked example: the decimal number 255 is 11 in binary and FF in hexadecimal.Worked example: the decimal number 255 is 111 in binary and FF in hexadecimal.Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Worked example: the decimal number 255Work
ხშირად დასმული კითხვები
როგორ გადავამუშავო ათობითი რიცხვი ორობითზე?
გაყოფა 2- ით და დარჩენილის წაკითხვა ქვემოთა ნაწილიდან ზემოთ. მაგალითად, 10 ათეულის ფორმატში ნიშნავს 1010 ორობითი ფორმატში და 255 ნიშნავს 11.
ქრჲ ვ ჳვქსაევუამვნალნა?
ოცდაათიანი (16- ის საფუძველი) ოთხი ბინა ერთ ციფრში (0- 9 შემდეგ A- F) აერთიანებს, ამიტომ ბაიტების ჩაწერის კომპაქტური გზაა. ოცდაათიანი რიცხვი 255 ოცდაათიანში FF- ს ნიშნავს.
ჱაღჲ ნა ნჲმვპა მთ თმა თჱპვფვნთვ?
ციფრები უნდა იყოს სწორი წყაროს საფუძველზე - მაგალითად მხოლოდ 0 და 1 ბინარული სისტემისთვის, ან 0- 9 და A- F hex სისტემისთვის. არასწორი ციფრები შედეგს უცნობი გახდის.
რას ნიშნავს ა-დან F-მდე რიცხვები ჰექსადეციმალურ სისტემაში?
ისინი ერთ ციფრს წარმოადგენენ 10- დან 15- მდე მნიშვნელობებისთვის: A არის 10, B არის 11, F- მდე, რომელიც 15- ს უდრის. ეს საშუალებას აძლევს 16- იან საფუძველს 15- მდე რიცხვის ერთ ადგილზე მოთავსებას, სანამ მას გადატანა მოუწევს.
ჱაღჲ გჟვკთ ჳვქსაეთნალვნ ჟთდსპვნ ვ ჟყღ ჟ ფვრთპთ ბთნაპნთ ჟთდსპვნთ?
რადგან 16 უდრის 2- ს მეოთხე ძალაზე, ყოველი ოცდაათიანი ციფრის მოცულობა ზუსტად ოთხი ბიტია. ასე რომ ბაიტი 11 ჯგუფდება 1 1- ში, რაც FF- ია - ეს რიცხვების საფუძვლის კონვერტორი გააკეთებს ჯგუფებას თქვენთვის.
რას აკეთებს ეს კონვერტორი ძალიან დიდი რიცხვების შემთხვევაში?
ეს მოქმედებს მთლიან რიცხვებზე და არის ზუსტი იმ რადიუსამდე, სადაც მთელი რიცხვებია შენახული (დაახლოებით 9 კვადრატილიონი ან 2⁵³). ამაზე მეტი, ძალიან გრძელი ორობითი ან ოცდაათიანი სტრიქონი შეიძლება დაკარგოს ზუსტობა ბოლო ციფრებში.
API - გამოიყენეთ ეს კალკულატორი კოდისგან
ამ კალკულატორის გამოძახება როგორც თავისუფალი JSON დასასრული - ღილაკი არ არის საჭირო. ქვემოთ მოცემული ველი პარამეტრების ან JSON- ის სახით გაგზავნეთ. API დოკუმენტაციის სრული წაკითხვა →
დასასრული
GET https://calculator.free/api/v1/number-base/
curl
curl "https://calculator.free/api/v1/number-base/?amount=255&from=10&to=2"
JavaScript fetch()
const r = await fetch(
"https://calculator.free/api/v1/number-base/?" + new URLSearchParams({
"amount": "255",
"from": "10",
"to": "2"
}));
const data = await r.json();
console.log(data.results);
ჲრდჲგჲპთრვ ჟა ოპჲგთჱთთ ჟამჲ ჱა ჲბღვ ოჲმჲღ, ნვ ჱა ტთნანჟთალნთ, მვეთუთნჟკთ თლთ ეანყფნთ ჟყგვრთ.