Unicode Finder

"뾹" U+BFB9(HANGUL SYLLABLE BBYOLG)

U+BFB9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYOLG

Programming

C
\uBFB9
JavaScript
\uBFB9
Java
\uBFB9
Json
\uBFB9
Python
\uBFB9
Perl
\x{BFB9}
PHP
\x{BFB9}
Ruby
\u{BFB9}
Rust
\u{BFB9}
Go
\uBFB9

Web

CSS
\00BFB9
HtmlDecimal
뾹
HtmlHexadecimal
뾹
Url
%EB%BE%B9

Code

MD5
75a0eafbbf2243fb5887a7e028e001fc
Sha1
a0a0c5053c92a5b63b5995cf5471b656a06d4969
Base64
6765

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFB9';
console.log(char);  // Output: 뾹

Java:

char c = '\uBFB9';
System.out.println(c);  // Output: 뾹

JSON:

{"text": "\uBFB9"}  // Value: 뾹

Python:

char = '\uBFB9'
print(char)  # Output: 뾹

Perl:

my $char = "\x{BFB9}";
print $char;  # Output: 뾹

PHP:

$char = "\x{BFB9}";
echo $char;  // Output: 뾹

Ruby:

char = "\u{BFB9}"
puts char  # Output: 뾹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49081;</p>  <!-- Display: 뾹 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFB9;</p>  <!-- Display: 뾹 -->

URL Encoding:

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

Encodings

MD5:

75a0eafbbf2243fb5887a7e028e001fc

SHA1:

a0a0c5053c92a5b63b5995cf5471b656a06d4969

Base64:

6765