12
텍스트 및 Base64 디코딩 및 인코딩
Conversion, Converter, Encoder, Decoder, Text

최신 작업총: 5,664

about 1 day ago
약 2일 전
약 2일 전
약 6일 전
1주 이내
1주 이내
1주 이내

브라우저 바로가기

클릭 한 번으로 이 도구를 사용하려면 아래 바로가기를 브라우저 북마크바에 끌어다 놓으세요..
텍스트 선택
바로 가기를 클릭하여 인코딩/디코딩
텍스트 및 Base64 디코딩 및 인코딩
텍스트 기반 입력을 base64 형식으로 또는 그 반대로 링크, 비디오 또는 이미지, 심지어 원격 URL 또는 업로드 가능한 파일로 변환합니다. 그런 다음 공유 가능한 링크를 통해 친구에게 직접 자신의 언어로 결과를 제공하거나 비공개 장소에 저장하기 위해 다운로드하십시오.
18-01-2023
추가된 날짜
1y 3m 8d
서빙 시간
버전

Base64는 4개의 6비트 Base64 숫자로 표현할 수 있는 24비트 시퀀스로 이진 데이터(보다 구체적으로 8비트 바이트 시퀀스)를 나타내는 이진-텍스트 인코딩 체계 그룹입니다.

모든 이진-텍스트 인코딩 체계에 공통적인 Base64는 텍스트 콘텐츠만 안정적으로 지원하는 채널을 통해 이진 형식으로 저장된 데이터를 전달하도록 설계되었습니다.

Base64는 HTML 및 CSS 파일과 같은 텍스트 자산 내에 이미지 파일 또는 기타 이진 자산을 포함하는 기능이 있는 World Wide Web에서 특히 널리 사용됩니다.

자세한 내용은 wiki

주의

Because of browser limitations, your data length could be not over 1950 characters if you would like to use this method directly. Otherwise, please consider using our API.

To encode the text

You may open the browser and load the URL with the parameter like this:

https://tooly.win/text-base64-decode-encode.html?input=your plain text you would like to encode

If you would like to encode content of the external URL, you may open the browser and load URL like this:

https://tooly.win/text-base64-decode-encode.html?input=URL&content=fetch

More parameters for encoding your data:



To decode the encoded text

You may open the browser and load the URL with the parameter like this:

https://tooly.win/text-base64-decode-encode.html?code=your encoded data

If you would like to decode the external URL, you may open the browser and load URL like this:

https://tooly.win/text-base64-decode-encode.html?code=URL

주의

이 도구는 현재 API를 통한 POST 메서드만 허용합니다. GET 메서드를 사용하려면 사용을 고려하세요. 직접 사용.

끝점

https://tooly.win/api/text-base64-decode-encode/

To encode the text

끝점: POST https://tooly.win/api/text-base64-decode-encode/
매개변수
input
string

URL / your plain text you would like to encode

content
string

fetch if your input is an URL and you would like to encode its content. Without this parameter, our tool would process your URL as text

safe
boolean

true 인코딩에 Base64URL 형식을 사용하려는 경우

응답하다
status
boolean

true 당신의 요청이 괜찮다면

result
string

오류가 없는 경우 요청 결과

message
string

오류가 있는 경우 메시지 오류


curl
	https://tooly.win/api/text-base64-decode-encode/
	-X POST -H 'Content-Type: application/json'
	--data '{"input":"your plain text you would like to encode"}'

{
	"status": true,
	"result": "eW91ciBwbGFpbiB0ZXh0IHlvdSB3b3VsZCBsaWtlIHRvIGVuY29kZQ==",
	"messsage": "",
}

To decode the encoded text

끝점: POST https://tooly.win/api/text-base64-decode-encode/
매개변수
code
string

URL / your encoded data

응답하다
status
boolean

true 당신의 요청이 괜찮다면

result
string

오류가 없는 경우 요청 결과

message
string

오류가 있는 경우 메시지 오류


curl
	https://tooly.win/api/text-base64-decode-encode/
	-X POST -H 'Content-Type: application/json'
	--data '{"code":"eW91ciBlbmNvZGVkIGRhdGE="}'

{
	"status": true,
	"result": "your encoded data",
	"messsage": "",
}
언어인코딩풀다필요하다
Pythonstring = "Tooly.win"
string_bytes = string.encode("ascii")
base64_bytes = base64.b64encode(string_bytes)
base64.b64decode(string)import base64
JavaBase64.encodeBase64(string)Base64.decodeBase64(string)import org.apache.commons.codec.binary.Base64
C#System.Convert.ToBase64String(System.Text.Encoding.UTF8.GetBytes(plainTextBytes))System.Text.Encoding.UTF8.GetString(System.Convert.FromBase64String(base64EncodedData))
Visual Basic (VB)System.Convert.ToBase64String(data)System.Convert.FromBase64String(base64encoded)
JavaScriptbtoa(string)atob(string)
SQLSELECT TO_BASE64('string')SELECT FROM_BASE64('string')use mysql
PHPbase64_encode($string)base64_decode($string)
Swiftstring.data(using: .utf8)?.base64EncodedString()String(data: string, encoding: .utf8)
Golang (Go)b64.StdEncoding.EncodeToString([]byte('string'))b64.StdEncoding.DecodeString('string')package main
import b64 "encoding/base64"
Rbase64encode(string)base64decode(string)
RubyBase64.encode64(string)Base64.decode64(string)require "base64"
Rustgeneral_purpose::STANDARD_NO_PAD.encode(string)general_purpose::STANDARD_NO_PAD.decode(string)use base64::{Engine as _, engine::general_purpose};
Perlencode_base64($string)decode_base64($string)use MIME::Base64
Luabase64.encode('string')base64.decode('string')local base64 = require'base64'
KotlinBase64.getEncoder().encodeToString('string'.toByteArray())String(Base64.getDecoder().decode('string'))
Bashecho 'string' | base64echo 'string' | base64 –decode
PowerShell[Convert]::ToBase64String( [System.Text.Encoding]::Unicode.GetBytes($string) )[System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($string)
NodeJSBuffer.from('string').toString('base64')Buffer.from('string').toString('ascii')
CrystalBase64.encode('string')Base64.decode('string')require "base64"
ElixirBase.encode64('string')Base.decode64('string')
Nimencode('string')decode('string')import std/base64
Dart & Flutterbase64.encode(utf8.encode('string'))base64.decode('string')import 'dart:convert'
Install the web app ~의 “텍스트 및 Base64 디코딩 및 인코딩” on your home screen for quicker and easier access. Not Now

Just tap then “Add to Home Screen”

Share