Unicode Finder

"뾶" U+BFB6(HANGUL SYLLABLE BBYONH)

U+BFB6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYONH

Programming

C
\uBFB6
JavaScript
\uBFB6
Java
\uBFB6
Json
\uBFB6
Python
\uBFB6
Perl
\x{BFB6}
PHP
\x{BFB6}
Ruby
\u{BFB6}
Rust
\u{BFB6}
Go
\uBFB6

Web

CSS
\00BFB6
HtmlDecimal
뾶
HtmlHexadecimal
뾶
Url
%EB%BE%B6

Code

MD5
9a6513501142b245c8c259cc464a56a6
Sha1
16db53ee084ad892c516f524e478cce1e0408209
Base64
6762

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFB6';
console.log(char);  // Output: 뾶

Java:

char c = '\uBFB6';
System.out.println(c);  // Output: 뾶

JSON:

{"text": "\uBFB6"}  // Value: 뾶

Python:

char = '\uBFB6'
print(char)  # Output: 뾶

Perl:

my $char = "\x{BFB6}";
print $char;  # Output: 뾶

PHP:

$char = "\x{BFB6}";
echo $char;  // Output: 뾶

Ruby:

char = "\u{BFB6}"
puts char  # Output: 뾶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49078;</p>  <!-- Display: 뾶 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFB6;</p>  <!-- Display: 뾶 -->

URL Encoding:

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

Encodings

MD5:

9a6513501142b245c8c259cc464a56a6

SHA1:

16db53ee084ad892c516f524e478cce1e0408209

Base64:

6762