Unicode Finder

"뾺" U+BFBA(HANGUL SYLLABLE BBYOLM)

U+BFBA
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYOLM

Programming

C
\uBFBA
JavaScript
\uBFBA
Java
\uBFBA
Json
\uBFBA
Python
\uBFBA
Perl
\x{BFBA}
PHP
\x{BFBA}
Ruby
\u{BFBA}
Rust
\u{BFBA}
Go
\uBFBA

Web

CSS
\00BFBA
HtmlDecimal
뾺
HtmlHexadecimal
뾺
Url
%EB%BE%BA

Code

MD5
a5475bdc24f5c223d1ebf3768fe11e02
Sha1
f75080afda67a2de83c7f3cc4a905bf8cff9eded
Base64
6766

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFBA';
console.log(char);  // Output: 뾺

Java:

char c = '\uBFBA';
System.out.println(c);  // Output: 뾺

JSON:

{"text": "\uBFBA"}  // Value: 뾺

Python:

char = '\uBFBA'
print(char)  # Output: 뾺

Perl:

my $char = "\x{BFBA}";
print $char;  # Output: 뾺

PHP:

$char = "\x{BFBA}";
echo $char;  // Output: 뾺

Ruby:

char = "\u{BFBA}"
puts char  # Output: 뾺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49082;</p>  <!-- Display: 뾺 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFBA;</p>  <!-- Display: 뾺 -->

URL Encoding:

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

Encodings

MD5:

a5475bdc24f5c223d1ebf3768fe11e02

SHA1:

f75080afda67a2de83c7f3cc4a905bf8cff9eded

Base64:

6766