Convert arraybuffer to base64. atob(base64String); function to get the binary of this file.

Convert arraybuffer to base64. See the notes on buf.
Convert arraybuffer to base64 JavaScript Library to convert Array Buffer to Base64 encoded string and vice versa. The from() method provides a convenient way to convert a JavaScript Buffer to Base64 by directly specifying the input and encoding parameters. One common use-case of Base64 encoding is to convert images into Base64 format, which can be directly embedded in HTML or CSS files. There is no dependency for this project, and it works in Mar 17, 2019 · Convert the ArrayBuffer to a typed array using the Uint8Array method. When the read operation is finished, the readyState property becomes DONE, and the loadend event is triggered. length); for (let i = 0; i < rawData. js buffer module, which is included to compare against. fromBase64() static method creates a new Uint8Array object from a base64-encoded string. A boolean specifying whether to omit padding characters (=) at the end of the Apr 5, 2024 · To convert an image to base64 using Node. Convert a Blob to an ArrayBuffer. A Uint8Array is a typed array, meaning it is a mechanism for viewing the data in an underlying ArrayBuffer. log(base64String); // Outputs: SGVsbG8gV29ybGQ= Working with ArrayBuffer Base64 and base64url to string or arraybuffer, and back. Dec 4, 2024 · 要转换成 Base64 字符串的 ArrayBuffer 对象 示例 const arrayBuffer = new Uint8Array ([55, 55, 55]) const base64 = uni. Base64. Edit on GitHub. Start using base64-arraybuffer in your project by running `npm i base64-arraybuffer`. Often used to encode binary data in text-based formats like Jan 28, 2021 · JavaScript 进行 hex、base64、bytes 和 string 的互转方法。 Jun 10, 2020 · 所以将ArrayBuffer转成base64需要分为两步:1、将ArrayBuffer转为二进制字符串;2、将二进制字符串 工作记录 后端传回的验证码格式是arraybuffer格式,需要将其转换成二进制,再转换成base64格式的图片 axios export const getVerificationCode Dec 11, 2024 · Example of Buffer to Base64 Conversion. This process involves several steps, which are detailed below. e. Latest version: 0. js Buffer API predates the introduction of ArrayBuffer into the JavaScript language. Jan 28, 2021 · I have a Javascript function that takes a base64 string as parameter. . 0 开始,本接口停止维护 基础库 1. Convert a Dec 18, 2023 · 记录一些 Node. Nov 4, 2024 · The btoa() method of the Window interface creates a Base64-encoded ASCII string from a binary string (i. Apr 27, 2022 · Hex:hex编码也称之为Base16 ,它将每一个字节表示的十六进制表示的内容,用字符串来显示作用是将不可见的,复杂的字节数组数据,转换为可显示的字符串数据 Base64: 把数据按照字节分为三个字节一组,也就是24bit,如果最后存在不够三个字节为一组,也就是不够24bit的话,就使用0补位 HEX编码的特点是 Dec 4, 2024 · base64 String 是 要转化成 ArrayBuffer 对象的 Base64 字符串 示例 const base64 = 'test' const arrayBuffer = uni. The task at hand is to efficiently convert an ArrayBuffer into a base64-encoded string, a requirement for multipart POST requests. 0. This is null if the request is not complete or was not successful. Native Implementation. If you already have an array buffer Sep 4, 2024 · Convert base64 String to ArrayBuffer In JavaScript A Base64 string represents binary data in an ASCII string format by translating it into a radix-64 representation. For To decode a Base64 string back to an ArrayBuffer in JavaScript, you can utilize the built-in atob function to decode the Base64 string into a binary string, and then convert that binary string into an ArrayBuffer. byteOffset for details. The binary version of "Go win" is: Mar 7, 2020 · 这里我们用拓展运算符把类型数组的代码单元解出来,一次性转完,得到一个普通的字符串。 最后,我们需要借助一个window对象的方法,也就是btoa方法,它的作用是:把一个普通字符串编码成base-64格式的字符串。 有时候后台把图片资源通过arrayBuffer传给前端,这时候为了能正常显示,我们还需要 Free Base64 online converter allows you to encode text to Base64 or to decode Base64 to text on same page. js >=4. I then use the window. To convert a buffer to a Base64 string, you can use the toString() method with 'base64' as an argument: const buf = Buffer. JavaScript has Uint8Arrays to work with binary data, but no built-in mechanism to encode that data as base64, nor to take base64'd data and 2 days ago · The standard library provides hex and base64 encoding and decoding utilities. c o m * / return bytes. Jan 13, 2025 · ArrayBuffer; data-uri string; base64 string; plain string; Array; Array of Arrays; Number (creates new ArrayBuffer of the defined length in bytes) etc. ⇔ Conventionally and Safely convert between various JavaScript data types - unjs/undio Convert from ArrayBuffer to Base64. 343 457981 343 . Link to this answer Share Copy Link . Convert received arrayBuffer value into Base64 encoded string and then we write a file using toBinary() function of CFML bypassing Base64 encoded string in it. import {decodeBase64, encodeBase64 } from "jsr: We can convert back to a string by using the decodeHex method. You cannot directly manipulate the contents of an ArrayBuffer; instead, Mar 21, 2019 · base64 --> ArrayBuffer ArrayBuffer --> base64 我的博客 我的园子 账号设置 简洁模式 退出登录 Dec 26, 2024 · Convert ArrayBuffer to Base64 string and vice versa. Encode and decode base64 strings. 📦 A simple, lightweight, and efficient JavaScript library to manage encoding/decoding between base64 data, Uint8Arrays, and ArrayBuffers - MrPropre/base64-u8array-arraybuffer Oct 13, 2021 · Convert arrayBuffer to base64 string Comment . readdirSync() method to read the image file. Latest version: 1. atob(base64); var len = binary_string. log (textDecoder. Detect when code is executed with Bun. References References. This library is an useful add-on for cryptographic project, network project, and more. This package contains utilities to encode and decode ArrayBuffer objects to base64 and hex with full support for Unicode and binary data. Check if two objects are deeply equal. This method should be preferred over Window. Convert a Blob to a DataView. charCodeAt(i); return outputArray; var binary = ''; var bytes = new Dec 2, 2024 · Converting ArrayBuffers to Base64 Strings in Native JavaScript. Start using ab2b64 in your project by running `npm i ab2b64`. Jul 28, 2023 · 事情的起因是这样,这周在工作时,调用了一个图片转灰度透明的接口,返回来的是一个image字段不是一个url地址,是一个base64编码的字符串 一般来说,图片在后端的存储方式分为两种: 可以将图片以独立文件的形式 Jul 28, 2023 · 事情的起因是这样,这周在工作时,调用了一个图片转灰度透明的接口,返回来的是一个image字段不是一个url地址,是一个base64编码的字符串 一般来说,图片在后端的存储方式分为两种: 可以将图片以独立文件的形式 Encode/decode base64 data into ArrayBuffers. 1. May 8, 2021 · Convert arrayBuffer to Base64 string Example. You probably have seen this "agreement" before: it is the String's character 20 hours ago · Convert an ArrayBuffer to a string with Bun. arrayBufferToBlob(arrayBuffer, options?) Convert from ArrayBuffer to Blob. Nov 25, 2024 · Find the Base64 symbol for each of the decimal values via a Base64 lookup table; For a better understanding of this concept, let's take a look at an example. Often used to encode binary data in text-based formats like JSON or HTML, it needs to be converted back into its original binary format for further processing. atob(base64); const outputArray = new Uint8Array (rawData. js too. length; ++i) { outputArray[i] = rawData. Below is custom JavaScript function arrayBufferToBase64() to accomplish the requirement. Note that Buffer is a Uint8Array subclass, so you can use this package with Buffer too. Source: stackoverflow. arrayBufferToBase64 (arrayBuffer) 帮助我们改善此页面! 上次更新: 2024/12/4 21:14:40 开发产品 HBuilderX I need an efficient (read native) way to convert an ArrayBuffer to a base64 string which needs to be used on a multipart post. 4. At that time, the result attribute contains the data as a data: URL representing the file's data as a base64 encoded string. abubakar hassan. In JavaScript, the atob() function can be used to decode a base64 string. For 'base64', 'base64url', and 'hex', this function assumes valid input. 0 Popularity 10/10 Helpfulness 4/10 Language whatever. decode (hexDecoded)); 将选择的图片转为Base64字符串,或者将指定的Base64字符串转换为图片。转换的字符串中包含mime类型,前端可以直接使用。如果需要获取不包含mime的纯Base64字符串,请使用文件转Base64功能。 Aug 26, 2024 · The readAsDataURL() method of the FileReader interface is used to read the contents of the specified Blob or File. - Hexagon/base64. . toString('base64'); console. , a string in which each character in the string is treated as a byte of binary data). 9. glb file that I pass from C# after converting it to a base64 String: var buffer = await FileIO. atob() method to decode the data again. length, which does not account for the encoding that is used to convert the string into bytes. Convert the blob to a ⇔ Conventionally and Safely convert between various JavaScript data types - unjs/undio. */ export function fromArrayBuffer (ab: ArrayBuffer): string; interface Jan 10, 2024 · # MySQL中的Base64URL编码在MySQL中,Base64URL编码是一种常见的字符串编码方式,它通常用于将二进制数据转换为可在文本格式中安全传输的字符串。Base64URL编码与标准的Base64编码类似,但是使用了一些不同的字符集来表示编码后的 3 days ago · #ArrayBuffer wx. Get the file name of the current file. Example Implementation: Below is a JavaScript function that performs the base64 to ArrayBuffer conversion: Jan 7, 2025 · ArrayBuffer 要转换成 Base64 字符串的 ArrayBuffer 对象 示例代码 const arrayBuffer = new Uint8Array ([11, 22, 33]) const base64 = Taro. You can use this method to encode data which may otherwise cause communication problems, transmit it, then use the Window. 1 Jan 1970. The Node. Since an ArrayBuffer is, in fact, a byte array, this conversion requires that both ends agree on how to represent the characters in the String as bytes. Solution. This ArrayBuffer is not guaranteed to correspond exactly to the original Buffer. 此工具是一个 Base64 编码或解码在线工具,实现把字符串转成 Base64 或者从 Base64 个数不是 4 的倍数时,添加在尾部的字符),作为一个基本字符集。然后,其他所有符号都转换成这个字符集中的字符。 Jun 27, 2021 · base64 is a common way to represent arbitrary binary data as ASCII. ToArray(); //This is the data being passed to Aug 19, 2023 · Introduction. Jan 7, 2025 · This is not the same as String. js 中的流格式转换代码。 Base64 转 Buffer const buffer = Buffer. prototype. 360 3 days ago · Convert an ArrayBuffer to a Uint8Array with Bun. const hexDecoded = decodeHex (hexEncoded); console. base64ToArrayBuffer(string base64) 从基础库 2. Finally, NodeBuffer is the node. Sep 13, 2024 · A Base64 string represents binary data in an ASCII string format by translating it into a radix-64 representation. Supports regular base64 and base64url; Convert to/from string or arraybuffer; Validate / identify base64 and Dec 23, 2024 · Useful utilities for working with Uint8Array (and Buffer). buffer; }, Dec 23, 2024 · Useful utilities for working with Uint8Array (and Buffer). In this blog, we will explore how to convert an ArrayBuffer, which is a typed array representing a fixed-length raw binary data buffer, into a Base64 string. to-arraybuffer − convert Buffer to ArrayBuffer, fast implementation. It's especially designed for usage in web browsers, but it works on Node. Uint8Array is included as a sanity check (since BrowserBuffer uses Uint8Array under the hood, Uint8Array will always be at least a bit faster). 0 (both require and Aug 6, 2023 · Then, we convert the buffer to Base64 using the toString() method with the 'base64' encoding. Oct 24, 2024 · 使用JavaScript将ArrayBuffer转换成base64编码可以通过将ArrayBuffer转换成Uint8Array,然后将Uint8Array转换成字符串,最后使用btoa函数进行base64 编码。这是一种简单且高效的方法来处理二进制数据的编码和解码。希望本文对你有所帮助! 本文来自极简 Dec 2, 2024 · Converting ArrayBuffers to Base64 Strings in Native JavaScript. The resulting Base64 string is stored in the base64 variable and then printed to the console. to String(‘ base64 ’) Buffer 转 Blob 需传文件 MIME 格式 const blob = new Blob([dataBuffer], { type: mime}); Jan 17, 2023 · 本文详细介绍了常见的图片格式转换方法,包括File对象转Base64,Base64转Blob,Blob转file,以及如何在JavaScript中进行Blob到ArrayBuffer,ArrayBuffer到Blob的转换。此外,还提供了将图片URL转换为Blob和Base64的实用函数,对于前端开发者处理图像数据 Nov 4, 2024 · A string specifying the base64 alphabet to use. ReadBufferAsync(File); var bytes = buffer. About External Resources. This process is essential for handling binary data in web applications, especially when dealing with file uploads or downloads. Tags: arraybuffer base64 string whatever. The task at hand is to efficiently convert an ArrayBuffer into a base64-encoded string, a requirement for multipart Jun 10, 2020 · 所以将ArrayBuffer转成 base64 需要分为两步: 1、将ArrayBuffer转为二进制字符串; 2、将二进制字符串通过btoa方法转为base64字符串; binary += String. "base64url" Encode input with the URL-safe base64 alphabet, which uses -and _. To encode an ArrayBuffer to base64, use the Encode(ab: ArrayBuffer): string method: import {Encode} from 'arraybuffer-encoding/base64' const ab = 6 days ago · JavaScript Library to convert Array Buffer to Base64 encoded string and vice versa. from(base64Str, 'base64'); Buffer 转 Base64 const base64Str = buffer. let TYPED_ARRAY Jan 3, 2025 · Encode/decode base64 data into ArrayBuffers. performance. It's time to transition from Buffer to Uint8Array, and this package helps fill in the gaps. base64 in order to provide a solution for Jul 15, 2024 · The ArrayBuffer object is used to represent a generic raw binary data buffer. You can apply CSS to your Pen from any stylesheet on the web. Convert to ArrayBuffer: Iterate through each character in the binary string, convert it to a Unicode code point, and store it in the ArrayBuffer. * @param {string} b64Str * @return An ArrayBuffer object. This package is tree-shakeable and browser-compatible. Jun 14, 2012 · One common practical question about ArrayBuffer is how to convert a String to an ArrayBuffer and vice-versa. data-uri-to Oct 30, 2024 · 事情的起因是这样,这周在工作时,调用了一个图片转灰度透明的接口,返回来的是一个image字段不是一个url地址,是一个base64编码的字符串 一般来说,图片在后端的存储方式分为两种: 可以将图片以独立文件的形式存储在服务器的指定文件夹中,再将路径存入数据库字段中; 将图片转换成二进制流 Sep 29, 2019 · Convert base64 string to arraybuffer Demo Code base64ToArrayBuffer: function (base64) { var binary_string = window. charCodeAt(i); } / * f r o m w w w. Contributed on Mar 03 2022 . There is no dependency for this project, and it works in In this blog, we will explore how to convert an ArrayBuffer, which is a typed array representing a fixed-length raw binary data buffer, into a Base64 string. See perf tests in /perf. Convert a Blob to a ReadableStream. Skip to main content; Skip to search; Skip to select language; Open main menu. Works in Node, Deno or browser. fromCharCode Dec 3, 2024 · 直接获取的话会乱码,这个时候我们需要将responseType修改为arraybuffer。 这样我们才能正确的拿到ArrayBuffer数据。 那么,拿到之后又如何转成 base64 呢? (不转的话 To convert an ArrayBuffer to a Base64 encoded string, we can follow a simple step-by-step process: // Step 1: Create a Uint8Array from the ArrayBuffer const uint8Array = new Uint8Array(arrayBuffer); // Step 2: Convert the Uint8Array to Dec 27, 2021 · Encoding to base64. There are 489 other projects in the npm registry using base64-arraybuffer. Guru A virtual teacher who reveals to you the great secrets of Base64. */ export function toArrayBuffer (b64Str: string): ArrayBuffer; /** * Convert a Base64 string to an ArrayBuffer. Nov 26, 2024 · The response property will contain the entity body according to responseType, as an ArrayBuffer, Blob, Document, JSON, or string. from() Use the arrayBuffer() method to convert the response to a blob. See the notes on buf. Suppose we have a string "Go win" and we want to convert it into a Base64 string. j a v a 2 s. Share . Use the Buffer. com. It can be one of the following: "base64" (default) Encode input with the standard base64 alphabet, which uses + and /. Dec 28, 2024 · Convert plain/base64/datauri string to ArrayBuffer - dy/string-to-arraybuffer Base64 encoding is a popular technique used to achieve this, as it allows us to represent binary data as a string of ASCII characters. Essentially the data coming in is a . Base64 encoding allows binary data to be represented in a format that looks and acts as if it were plain text. Apr 2, 2023 · 文件类型 JS 提供了一些 API 来处理文件或原始文件数据,例如:File、Blob、FileReader、Base64、ArrayBuffer、Canvas 等。 图源:知乎-前端充电宝 类型说明 Blob Blob 对象表示一个不可变、原始数据的类文件对象 Feb 22, 2023 · Alternatively, use the to-arraybuffer module. Get the directory of the current file. 0 开始支持,低版本需做兼容处理。 小程序插件:支持 微信 Windows 版:支持 微信 Mac 版:支持 微信 鸿蒙 OS 版:支持 # 功能描述 将 Base64 字符串转成 Sep 29, 2024 · Alternatively, use the to-arraybuffer module. atob() because it results in a byte array, which is easier to work with than a string containing raw bytes, unless your decoded binary data is actually intended to be ASCII text. A simple guide to convert ArrayBuffer 3 days ago · Convert an ArrayBuffer to a Uint8Array. arrayBufferToBase64 (arrayBuffer) 帮助我们改善此页面! 上次更新: 2024/12/4 21:14:40 开发产品 HBuilderX Nov 27, 2024 · Create an ArrayBuffer: Create a new Uint8Array with a length equal to the binary string's length. Oct 7, 2024 · 本文探讨了在 JavaScript 中将 ArrayBuffer 转换为 Base64 字符串时遇到的栈溢出问题,并提供了几种实用的解决方案。 我们将通过生动的比喻来解释相关概念,比较不同方法 在JavaScript中,有一个很常用的引用数据类型Array,你可以在里面放字符串、数字、对象、布 而ArrayBuffer我们叫它类型化数组,它的诞生就是为了解决一个问题:操作二进制数据。 Mar 21, 2019 · const rawData = window. 2, last published: 3 years ago. Written as a ES-module with full typings, it operates in any environment - like Node, Deno, Bun and browsers. 1, last published: 5 years ago. The first step is to convert this string into binary. base64ToArrayBuffer (base64) 帮助我们改善此页面! 上次更新: 2024/12/4 21:14:40 开发产品 HBuilderX uni-app uni-app x Oct 18, 2024 · This library is your go-to solution for encoding, decoding, and validating base64 and base64url for strings and array buffers. omitPadding Optional. Dec 27, 2021 · Documentation for arraybuffer-encoding-encode - v1. Contribute to niklasvh/base64-arraybuffer development by creating an account on GitHub. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself. Aug 18, 2024 · 平时没怎么用过这些类型,有点懵,不熟悉。经过查资料,发现是这么的简单。 Int16Array 转换 ArrayBuffer 的其他方法 function int16ArrayToArrayBuffer(int16Array) { var buffer = new ArrayBuffer(int16Array. BrowserBuffer is the browser buffer module (this repo). length * 2); var view = new DataView Jan 17, 2020 · Converting Base64 to ArrayBuffer in JavaScript. js: Use the fs. ArrayBuffer encoding and decoding tools. from('Hello World'); const base64String = buf. 0 Answers Avg Quality 2/10 Nov 4, 2024 · The Uint8Array. However, the result of this function is a string, not an ArrayBuffer. An ArrayBuffer in JavaScr 6 days ago · JavaScript Library to convert Array Buffer to Base64 encoded string and vice versa. This package also includes methods to convert a string to Base64 and back. To convert the decoded string to an ArrayBuffer, we can use the TextEncoder and TextDecoder APIs, which are part of the TextEncoder interface. Convert to/from string or arraybuffer; Validate / identify base64 and base64url; Works in Node. const buffer = new ArrayBuffer (64); const arr = new Uint8Array (buffer); Encode and decode base64 strings. It is an array of bytes, often referred to in other languages as a "byte array". This will return an array of 8-bit unsigned integers. arrayBufferToBase64 (arrayBuffer) 编辑此页 上一页 base64ToArrayBuffer 下一页 openSystemBluetoothSetting . atob(base64String); function to get the binary of this file. Bun implements both. Dec 11, 2024 · To convert a Base64 encoded string to an ArrayBuffer in JavaScript, you can utilize the built-in atob function to decode the Base64 string into a binary string, and then convert that binary string into an ArrayBuffer. The code below provides a native solution: Oct 22, 2023 · How to convert base64 encoded bytes to string different in Javascript and C#; How to convert base64 string into file object in Javascript which should work in IE Browser; How to convert base64 string to ArrayBuffer in Javascript; How to convert base64 string to usable URL in Javascript; How to convert byte[] to Base64 string in Javascript 2 days ago · Convert an ArrayBuffer to a Buffer with Bun. arrayBufferToDataView(arrayBuffer) Oct 26, 2020 · //ArrayBuffer转base64 function translateArrayBufferToBase64(buffer){ let binaryStr = ""; const bytes = new Uint8Array(buffer); for(let i=0;le ArrayBuffer和Base64互相转换 - 许你一世煙花 - 博客园 Jan 2, 2025 · * Convert a Base64 string to an ArrayBuffer. length; var bytes = new Uint8Array(len); for (var i = 0; i < len; i++) { bytes[i] = binary_string. oiiaf hvqfxqo lplw njjmarb iykslr qoh tgvkre kgfs vphtp kfecb
{"Title":"What is the best girl name?","Description":"Wheel of girl names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}