Unicode Finder

"뾿" U+BFBF(HANGUL SYLLABLE BBYOLH)

뾿
U+BFBF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYOLH

Programming

C
\uBFBF
JavaScript
\uBFBF
Java
\uBFBF
Json
\uBFBF
Python
\uBFBF
Perl
\x{BFBF}
PHP
\x{BFBF}
Ruby
\u{BFBF}
Rust
\u{BFBF}
Go
\uBFBF

Web

CSS
\00BFBF
HtmlDecimal
뾿
HtmlHexadecimal
뾿
Url
%EB%BE%BF

Code

MD5
904fa5b556da098a823d0b6c4db2a735
Sha1
5f25fc881446b186b47162f439a83b4df7e0a5db
Base64
676/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFBF';
console.log(char);  // Output: 뾿

Java:

char c = '\uBFBF';
System.out.println(c);  // Output: 뾿

JSON:

{"text": "\uBFBF"}  // Value: 뾿

Python:

char = '\uBFBF'
print(char)  # Output: 뾿

Perl:

my $char = "\x{BFBF}";
print $char;  # Output: 뾿

PHP:

$char = "\x{BFBF}";
echo $char;  // Output: 뾿

Ruby:

char = "\u{BFBF}"
puts char  # Output: 뾿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49087;</p>  <!-- Display: 뾿 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFBF;</p>  <!-- Display: 뾿 -->

URL Encoding:

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

Encodings

MD5:

904fa5b556da098a823d0b6c4db2a735

SHA1:

5f25fc881446b186b47162f439a83b4df7e0a5db

Base64:

676/