Unicode Finder

"뻉" U+BEC9(HANGUL SYLLABLE BBYAENG)

U+BEC9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYAENG

Programming

C
\uBEC9
JavaScript
\uBEC9
Java
\uBEC9
Json
\uBEC9
Python
\uBEC9
Perl
\x{BEC9}
PHP
\x{BEC9}
Ruby
\u{BEC9}
Rust
\u{BEC9}
Go
\uBEC9

Web

CSS
\00BEC9
HtmlDecimal
뻉
HtmlHexadecimal
뻉
Url
%EB%BB%89

Code

MD5
fdb109b9ee6bcaab659809e78ad69f7c
Sha1
e92c59b802966dee96443bea7cf236917656dd49
Base64
67uJ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBEC9';
console.log(char);  // Output: 뻉

Java:

char c = '\uBEC9';
System.out.println(c);  // Output: 뻉

JSON:

{"text": "\uBEC9"}  // Value: 뻉

Python:

char = '\uBEC9'
print(char)  # Output: 뻉

Perl:

my $char = "\x{BEC9}";
print $char;  # Output: 뻉

PHP:

$char = "\x{BEC9}";
echo $char;  // Output: 뻉

Ruby:

char = "\u{BEC9}"
puts char  # Output: 뻉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48841;</p>  <!-- Display: 뻉 -->

HTML Hexadecimal:

<p>HTML hex: &#xBEC9;</p>  <!-- Display: 뻉 -->

URL Encoding:

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

Encodings

MD5:

fdb109b9ee6bcaab659809e78ad69f7c

SHA1:

e92c59b802966dee96443bea7cf236917656dd49

Base64:

67uJ