Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

1
  • 1
    Beware in multibyte locales gawk's printf("%c", 0xAB) will print the U+00AB character encoded in the locale's encoding (0xc2 0xab in UTF-8 for instance), not byte 0xab. You'd want to fix the locale to C for instance to avoid that. Commented Sep 5, 2024 at 3:39