Break it into 7-bit chunks. These chunks are extracted from the least significant bits of the number.
Set the most significant bit (MSB) of each chunk to 1 if there are more chunks to follow, and to 0 for the last chunk.
Combine these chunks into bytes and output them in order.
300 in binary: 100101100100101100 (original)00101100 (first 7 bits: 44 in decimal)00000010 (remaining bits: 2 in decimal)00101100 -> 10101100 (since there are more chunks, MSB is 1)00000010 -> 00000010 (last chunk, MSB is 0)First byte: 10101100 (172 in decimal)Second byte: 00000010 (2 in decimal)0xAC 0x02