Unicode Finder

"뼬" U+BF2C(HANGUL SYLLABLE BBYEL)

U+BF2C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYEL

Programming

C
\uBF2C
JavaScript
\uBF2C
Java
\uBF2C
Json
\uBF2C
Python
\uBF2C
Perl
\x{BF2C}
PHP
\x{BF2C}
Ruby
\u{BF2C}
Rust
\u{BF2C}
Go
\uBF2C

Web

CSS
\00BF2C
HtmlDecimal
뼬
HtmlHexadecimal
뼬
Url
%EB%BC%AC

Code

MD5
e32da26fbc178f21c3247f3e29a9d2ab
Sha1
6904647104849476b22a96d8d7dab3d9a51beef2
Base64
67ys

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF2C';
console.log(char);  // Output: 뼬

Java:

char c = '\uBF2C';
System.out.println(c);  // Output: 뼬

JSON:

{"text": "\uBF2C"}  // Value: 뼬

Python:

char = '\uBF2C'
print(char)  # Output: 뼬

Perl:

my $char = "\x{BF2C}";
print $char;  # Output: 뼬

PHP:

$char = "\x{BF2C}";
echo $char;  // Output: 뼬

Ruby:

char = "\u{BF2C}"
puts char  # Output: 뼬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48940;</p>  <!-- Display: 뼬 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF2C;</p>  <!-- Display: 뼬 -->

URL Encoding:

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

Encodings

MD5:

e32da26fbc178f21c3247f3e29a9d2ab

SHA1:

6904647104849476b22a96d8d7dab3d9a51beef2

Base64:

67ys