Unicode Finder

"뾾" U+BFBE(HANGUL SYLLABLE BBYOLP)

U+BFBE
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYOLP

Programming

C
\uBFBE
JavaScript
\uBFBE
Java
\uBFBE
Json
\uBFBE
Python
\uBFBE
Perl
\x{BFBE}
PHP
\x{BFBE}
Ruby
\u{BFBE}
Rust
\u{BFBE}
Go
\uBFBE

Web

CSS
\00BFBE
HtmlDecimal
뾾
HtmlHexadecimal
뾾
Url
%EB%BE%BE

Code

MD5
71c6bd250304094eac0b60d2e298aee3
Sha1
21c82a23395e36e971b547640d1a016758385917
Base64
676+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFBE';
console.log(char);  // Output: 뾾

Java:

char c = '\uBFBE';
System.out.println(c);  // Output: 뾾

JSON:

{"text": "\uBFBE"}  // Value: 뾾

Python:

char = '\uBFBE'
print(char)  # Output: 뾾

Perl:

my $char = "\x{BFBE}";
print $char;  # Output: 뾾

PHP:

$char = "\x{BFBE}";
echo $char;  // Output: 뾾

Ruby:

char = "\u{BFBE}"
puts char  # Output: 뾾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49086;</p>  <!-- Display: 뾾 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFBE;</p>  <!-- Display: 뾾 -->

URL Encoding:

// 뾾 URL encoding
https://unicodefinder.com/search.php?query=%EB%BE%BE

Encodings

MD5:

71c6bd250304094eac0b60d2e298aee3

SHA1:

21c82a23395e36e971b547640d1a016758385917

Base64:

676+