Zend certified PHP/Magento developer

How to handle URL encoding? Specifically regarding updating a product using REST API

I have a product with a SKU that looks like this: “0/000.150.2010”
So naturally, when I try to update said product:
https://URL.com/index.php/rest/da/V1/products/0/000.150.2010
I get a “message”: “Request does not match any route.” error.

Encoding the parameter, gives a HTML page with a 404 status.
https://URL.com/index.php/rest/da/V1/products/0%2F000.150.2010

Now, I’ve looked at How to get Magento2 product with REST if sku has slash? and was wondering if there has been any update to a built-in workaround, considering it’s a bit old?