Unicode Finder

"뾫" U+BFAB(HANGUL SYLLABLE BBOEC)

U+BFAB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBOEC

Programming

C
\uBFAB
JavaScript
\uBFAB
Java
\uBFAB
Json
\uBFAB
Python
\uBFAB
Perl
\x{BFAB}
PHP
\x{BFAB}
Ruby
\u{BFAB}
Rust
\u{BFAB}
Go
\uBFAB

Web

CSS
\00BFAB
HtmlDecimal
뾫
HtmlHexadecimal
뾫
Url
%EB%BE%AB

Code

MD5
22f63b68c4473fa55290c22156170d46
Sha1
972eb893bb56bfbf0f1b633d335ee9f1f16519b7
Base64
676r

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFAB';
console.log(char);  // Output: 뾫

Java:

char c = '\uBFAB';
System.out.println(c);  // Output: 뾫

JSON:

{"text": "\uBFAB"}  // Value: 뾫

Python:

char = '\uBFAB'
print(char)  # Output: 뾫

Perl:

my $char = "\x{BFAB}";
print $char;  # Output: 뾫

PHP:

$char = "\x{BFAB}";
echo $char;  // Output: 뾫

Ruby:

char = "\u{BFAB}"
puts char  # Output: 뾫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49067;</p>  <!-- Display: 뾫 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFAB;</p>  <!-- Display: 뾫 -->

URL Encoding:

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

Encodings

MD5:

22f63b68c4473fa55290c22156170d46

SHA1:

972eb893bb56bfbf0f1b633d335ee9f1f16519b7

Base64:

676r