Unicode Finder

"뻂" U+BEC2(HANGUL SYLLABLE BBYAELP)

U+BEC2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYAELP

Programming

C
\uBEC2
JavaScript
\uBEC2
Java
\uBEC2
Json
\uBEC2
Python
\uBEC2
Perl
\x{BEC2}
PHP
\x{BEC2}
Ruby
\u{BEC2}
Rust
\u{BEC2}
Go
\uBEC2

Web

CSS
\00BEC2
HtmlDecimal
뻂
HtmlHexadecimal
뻂
Url
%EB%BB%82

Code

MD5
0063acf1bc95122218126b8ab519e31e
Sha1
4a2e46cdab6949f08346ea7cd1279d5eec6f9b4d
Base64
67uC

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBEC2';
console.log(char);  // Output: 뻂

Java:

char c = '\uBEC2';
System.out.println(c);  // Output: 뻂

JSON:

{"text": "\uBEC2"}  // Value: 뻂

Python:

char = '\uBEC2'
print(char)  # Output: 뻂

Perl:

my $char = "\x{BEC2}";
print $char;  # Output: 뻂

PHP:

$char = "\x{BEC2}";
echo $char;  // Output: 뻂

Ruby:

char = "\u{BEC2}"
puts char  # Output: 뻂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48834;</p>  <!-- Display: 뻂 -->

HTML Hexadecimal:

<p>HTML hex: &#xBEC2;</p>  <!-- Display: 뻂 -->

URL Encoding:

// 뻂 URL encoding
https://unicodefinder.com/search.php?query=%EB%BB%82

Encodings

MD5:

0063acf1bc95122218126b8ab519e31e

SHA1:

4a2e46cdab6949f08346ea7cd1279d5eec6f9b4d

Base64:

67uC