> ## Documentation Index
> Fetch the complete documentation index at: https://docs.starknet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# core::debug::print_byte_array_as_string

Prints a `ByteArray` as a string.

## Signature

```rust theme={null}
pub fn print_byte_array_as_string(self: ByteArray)
```

## Examples

```rust theme={null}
let ba: ByteArray = "123";
print_byte_array_as_string(@ba);
```
