Unicode Finder

"뻇" U+BEC7(HANGUL SYLLABLE BBYAES)

U+BEC7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYAES

Programming

C
\uBEC7
JavaScript
\uBEC7
Java
\uBEC7
Json
\uBEC7
Python
\uBEC7
Perl
\x{BEC7}
PHP
\x{BEC7}
Ruby
\u{BEC7}
Rust
\u{BEC7}
Go
\uBEC7

Web

CSS
\00BEC7
HtmlDecimal
뻇
HtmlHexadecimal
뻇
Url
%EB%BB%87

Code

MD5
e356e59eae7695f0f72708eb3de1d565
Sha1
0cba2de8d45355c34bd2e6820449cbfbde025fac
Base64
67uH

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBEC7';
console.log(char);  // Output: 뻇

Java:

char c = '\uBEC7';
System.out.println(c);  // Output: 뻇

JSON:

{"text": "\uBEC7"}  // Value: 뻇

Python:

char = '\uBEC7'
print(char)  # Output: 뻇

Perl:

my $char = "\x{BEC7}";
print $char;  # Output: 뻇

PHP:

$char = "\x{BEC7}";
echo $char;  // Output: 뻇

Ruby:

char = "\u{BEC7}"
puts char  # Output: 뻇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48839;</p>  <!-- Display: 뻇 -->

HTML Hexadecimal:

<p>HTML hex: &#xBEC7;</p>  <!-- Display: 뻇 -->

URL Encoding:

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

Encodings

MD5:

e356e59eae7695f0f72708eb3de1d565

SHA1:

0cba2de8d45355c34bd2e6820449cbfbde025fac

Base64:

67uH