Unicode Finder

"뾼" U+BFBC(HANGUL SYLLABLE BBYOLS)

U+BFBC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYOLS

Programming

C
\uBFBC
JavaScript
\uBFBC
Java
\uBFBC
Json
\uBFBC
Python
\uBFBC
Perl
\x{BFBC}
PHP
\x{BFBC}
Ruby
\u{BFBC}
Rust
\u{BFBC}
Go
\uBFBC

Web

CSS
\00BFBC
HtmlDecimal
뾼
HtmlHexadecimal
뾼
Url
%EB%BE%BC

Code

MD5
69eb2e37e29b6f41bd84af5264b5f4b0
Sha1
47e3d7bef3c8f1dae41d4315db7cd73a4da948e4
Base64
6768

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFBC';
console.log(char);  // Output: 뾼

Java:

char c = '\uBFBC';
System.out.println(c);  // Output: 뾼

JSON:

{"text": "\uBFBC"}  // Value: 뾼

Python:

char = '\uBFBC'
print(char)  # Output: 뾼

Perl:

my $char = "\x{BFBC}";
print $char;  # Output: 뾼

PHP:

$char = "\x{BFBC}";
echo $char;  // Output: 뾼

Ruby:

char = "\u{BFBC}"
puts char  # Output: 뾼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49084;</p>  <!-- Display: 뾼 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFBC;</p>  <!-- Display: 뾼 -->

URL Encoding:

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

Encodings

MD5:

69eb2e37e29b6f41bd84af5264b5f4b0

SHA1:

47e3d7bef3c8f1dae41d4315db7cd73a4da948e4

Base64:

6768