Unicode Finder

"쁰" U+C070(HANGUL SYLLABLE BBEUK)

U+C070
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEUK

Programming

C
\uC070
JavaScript
\uC070
Java
\uC070
Json
\uC070
Python
\uC070
Perl
\x{C070}
PHP
\x{C070}
Ruby
\u{C070}
Rust
\u{C070}
Go
\uC070

Web

CSS
\00C070
HtmlDecimal
쁰
HtmlHexadecimal
쁰
Url
%EC%81%B0

Code

MD5
b83e25dbc9642f84670e2687d6066f19
Sha1
6a6687894e89ee1cece73b2de317ae337bc785cb
Base64
7IGw

사용 예시

Programming Languages

C:

char c = '\uC070';
printf("%c\n", c);  // Output: 쁰

JavaScript:

const char = '\uC070';
console.log(char);  // Output: 쁰

Java:

char c = '\uC070';
System.out.println(c);  // Output: 쁰

JSON:

{"text": "\uC070"}  // Value: 쁰

Python:

char = '\uC070'
print(char)  # Output: 쁰

Perl:

my $char = "\x{C070}";
print $char;  # Output: 쁰

PHP:

$char = "\x{C070}";
echo $char;  // Output: 쁰

Ruby:

char = "\u{C070}"
puts char  # Output: 쁰

Rust:

let c = '\u{C070}';
println!("{}", c);  // Output: 쁰

Go:

char := '\uC070'
fmt.Printf("%c\n", char)  // Output: 쁰

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00C070";  /* Display: 쁰 */
}

HTML Decimal:

<p>HTML decimal: &#49264;</p>  <!-- Display: 쁰 -->

HTML Hexadecimal:

<p>HTML hex: &#xC070;</p>  <!-- Display: 쁰 -->

URL Encoding:

// 쁰 URL encoding
https://unicodefinder.com/search.php?query=%EC%81%B0

Encodings

MD5:

b83e25dbc9642f84670e2687d6066f19

SHA1:

6a6687894e89ee1cece73b2de317ae337bc785cb

Base64:

7IGw