Unicode Finder

"뻁" U+BEC1(HANGUL SYLLABLE BBYAELT)

U+BEC1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYAELT

Programming

C
\uBEC1
JavaScript
\uBEC1
Java
\uBEC1
Json
\uBEC1
Python
\uBEC1
Perl
\x{BEC1}
PHP
\x{BEC1}
Ruby
\u{BEC1}
Rust
\u{BEC1}
Go
\uBEC1

Web

CSS
\00BEC1
HtmlDecimal
뻁
HtmlHexadecimal
뻁
Url
%EB%BB%81

Code

MD5
4e80f3a539411050ce60ac9fdd5e82f1
Sha1
6c448b85572bc28e45713c0269248aaf0709222a
Base64
67uB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBEC1';
console.log(char);  // Output: 뻁

Java:

char c = '\uBEC1';
System.out.println(c);  // Output: 뻁

JSON:

{"text": "\uBEC1"}  // Value: 뻁

Python:

char = '\uBEC1'
print(char)  # Output: 뻁

Perl:

my $char = "\x{BEC1}";
print $char;  # Output: 뻁

PHP:

$char = "\x{BEC1}";
echo $char;  // Output: 뻁

Ruby:

char = "\u{BEC1}"
puts char  # Output: 뻁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48833;</p>  <!-- Display: 뻁 -->

HTML Hexadecimal:

<p>HTML hex: &#xBEC1;</p>  <!-- Display: 뻁 -->

URL Encoding:

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

Encodings

MD5:

4e80f3a539411050ce60ac9fdd5e82f1

SHA1:

6c448b85572bc28e45713c0269248aaf0709222a

Base64:

67uB