JSFiddle - React, Tailwind, and code Playground
HTML
<div id="out"></div>
JavaScript
var id = '000123';
var be1 = "<a href='#' onclick='GetProduct(" + id + ")'>Product</a >";
var be2 = "<a href='#' onclick='GetProduct(\"" + id + "\")'>Product</a >";
console.log(be1);
console.log(be2);