Unicode Finder

"쁙" U+C059(HANGUL SYLLABLE BBEUG)

U+C059
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEUG

Programming

C
\uC059
JavaScript
\uC059
Java
\uC059
Json
\uC059
Python
\uC059
Perl
\x{C059}
PHP
\x{C059}
Ruby
\u{C059}
Rust
\u{C059}
Go
\uC059

Web

CSS
\00C059
HtmlDecimal
쁙
HtmlHexadecimal
쁙
Url
%EC%81%99

Code

MD5
7e4304403fc06fff75c91c07f8df40a1
Sha1
1a8970e34707e2e5d8424ef1fc3565d868d81870
Base64
7IGZ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC059';
console.log(char);  // Output: 쁙

Java:

char c = '\uC059';
System.out.println(c);  // Output: 쁙

JSON:

{"text": "\uC059"}  // Value: 쁙

Python:

char = '\uC059'
print(char)  # Output: 쁙

Perl:

my $char = "\x{C059}";
print $char;  # Output: 쁙

PHP:

$char = "\x{C059}";
echo $char;  // Output: 쁙

Ruby:

char = "\u{C059}"
puts char  # Output: 쁙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49241;</p>  <!-- Display: 쁙 -->

HTML Hexadecimal:

<p>HTML hex: &#xC059;</p>  <!-- Display: 쁙 -->

URL Encoding:

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

Encodings

MD5:

7e4304403fc06fff75c91c07f8df40a1

SHA1:

1a8970e34707e2e5d8424ef1fc3565d868d81870

Base64:

7IGZ