Unicode Finder

"쁑" U+C051(HANGUL SYLLABLE BBYUNG)

U+C051
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYUNG

Programming

C
\uC051
JavaScript
\uC051
Java
\uC051
Json
\uC051
Python
\uC051
Perl
\x{C051}
PHP
\x{C051}
Ruby
\u{C051}
Rust
\u{C051}
Go
\uC051

Web

CSS
\00C051
HtmlDecimal
쁑
HtmlHexadecimal
쁑
Url
%EC%81%91

Code

MD5
8e4ad9bceb98bc1660b17b998ca4f7ad
Sha1
e65e50101ade9c5799c96cbf784f1cd746d73ae7
Base64
7IGR

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uC051';
console.log(char);  // Output: 쁑

Java:

char c = '\uC051';
System.out.println(c);  // Output: 쁑

JSON:

{"text": "\uC051"}  // Value: 쁑

Python:

char = '\uC051'
print(char)  # Output: 쁑

Perl:

my $char = "\x{C051}";
print $char;  # Output: 쁑

PHP:

$char = "\x{C051}";
echo $char;  // Output: 쁑

Ruby:

char = "\u{C051}"
puts char  # Output: 쁑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49233;</p>  <!-- Display: 쁑 -->

HTML Hexadecimal:

<p>HTML hex: &#xC051;</p>  <!-- Display: 쁑 -->

URL Encoding:

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

Encodings

MD5:

8e4ad9bceb98bc1660b17b998ca4f7ad

SHA1:

e65e50101ade9c5799c96cbf784f1cd746d73ae7

Base64:

7IGR