> For the complete documentation index, see [llms.txt](https://krjaeh0.gitbook.io/j-log/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://krjaeh0.gitbook.io/j-log/programming/cs_basics/data_representation/number-systems-and-bits/bit_byte.md).

# bit\_byte

## bit

* 컴퓨터에서 사용하는 데이터의 최소 단위 : 1 bit
* 0과 1로 구분되는 2진수로 표현된다.

## byte

* 8개의 비트로 구성된 더 큰 단위 : 1 byte
* 메모리에 저장되는 최소 단위
* 1바이트는 $2^8$ = 256가지 수를 표현 가능

**1byte = 16진수 2자리 = 2진수 8자리 = 8bit**

## [최상위 비트(MSB), 최하위 비트(LSB)](broken://pages/994490187942ead42b1b2141fc7cf90806418bae)

## [바이트 오더링(Byte Ordering)](broken://pages/e81fc4220e821e5664813233b56effe0d1554958)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://krjaeh0.gitbook.io/j-log/programming/cs_basics/data_representation/number-systems-and-bits/bit_byte.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
