<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=https://github.com/llvm/llvm-project/issues/58850>58850</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            [Format] Character of width 1 not considered so
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            new issue
      </td>
    </tr>

    <tr>
      <th>Assignees</th>
      <td>
      </td>
    </tr>

    <tr>
      <th>Reporter</th>
      <td>
          JohelEGP
      </td>
    </tr>
</table>

<pre>
    `.clang-format`:
```yaml
AlignConsecutiveAssignments: Consecutive
ColumnLimit: 120
```

Input and expected output:
```C++
inline constexpr quantity rotational_displacement = {"ϑ", [] { return path_length / radius; }};
inline constexpr quantity angular_velocity        = {"ω", [] { return (rotational_displacement / duration) * vector; }};
```

Actual output:
```C++
inline constexpr quantity rotational_displacement = {"ϑ", [] { return path_length / radius; }};
inline constexpr quantity angular_velocity = {"ω", [] { return (rotational_displacement / duration) * vector; }};
```

Replacing `ω` with `w` makes it format as expected:
```C++
inline constexpr quantity rotational_displacement = {"ϑ", [] { return path_length / radius; }};
inline constexpr quantity angular_velocity        = {"w", [] { return (rotational_displacement / duration) * vector; }};
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzdlM2O0zAQx5_GuVhbxflsDjm0KUUgDogXqJx4NjE4dvBHS9-ecbrAwu6KG0IbjRLPjD3--e_YvRHXllTpZlBcj3f3xs7co0_yHUkPJN3F9mpXPqtbaKfkqDujHQzByzPsnMPADNo7HEYfZW79O6PCrD_IWfqYZ1n6R-kHd32_00vwlGtB4dsCgwdBTfAYe0rUkWwfbY1KraQGOuDkHkda-jVw7aW_Ums899Jork5CukXxASIrJfmBkhorZKQ7kobFRtZRUu5JuWaoBR-spgv300mBHv1ESXaklgsZcKl77HSIlv-VAbUNitvTGZQZYuDh-Z1h27zIQLLti-tAJBHsmiNZg_6OnlE5Y59BfFbz3eADV69S5_9D4E8Qq0k90pi4gVQpvci40iq9RGfmX8BR6entDFLufp6A17UlT379y7_blARaVlX1tmB5mSeizUWTNzxBUAUtzn-83X9I0U3cchTfUnOPGyVQAEa18esSpQCLF5MzSbCqnbxf4s2HSGgjbmroN4OZ0VHq_ONzt1jzGQHRlc4FcNgot9syTaaWC-ihrDNoclYXjJV1U7Iqr1ha9JwVfaJ4D8pFQtRKw4WuJaJu5SGRbZZmGWNpzWpWlvmmEkNRVg1roC8yBgMpUpi5VJvIsTF2TGy7IvVhdJhU0nn3K8nX-xxWQWJ9HvxkbPveTKDevP2YrHO3K_t3w5LjUw">