Unicode Finder

"뿲" U+BFF2(HANGUL SYLLABLE BBWEOLM)

U+BFF2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWEOLM

Programming

C
\uBFF2
JavaScript
\uBFF2
Java
\uBFF2
Json
\uBFF2
Python
\uBFF2
Perl
\x{BFF2}
PHP
\x{BFF2}
Ruby
\u{BFF2}
Rust
\u{BFF2}
Go
\uBFF2

Web

CSS
\00BFF2
HtmlDecimal
뿲
HtmlHexadecimal
뿲
Url
%EB%BF%B2

Code

MD5
96fee52b94d95fe8389bf61aaf45b4a0
Sha1
5c83b32411d94bd338f3eb7808ebb422d6a2b2a4
Base64
67+y

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFF2';
console.log(char);  // Output: 뿲

Java:

char c = '\uBFF2';
System.out.println(c);  // Output: 뿲

JSON:

{"text": "\uBFF2"}  // Value: 뿲

Python:

char = '\uBFF2'
print(char)  # Output: 뿲

Perl:

my $char = "\x{BFF2}";
print $char;  # Output: 뿲

PHP:

$char = "\x{BFF2}";
echo $char;  // Output: 뿲

Ruby:

char = "\u{BFF2}"
puts char  # Output: 뿲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49138;</p>  <!-- Display: 뿲 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFF2;</p>  <!-- Display: 뿲 -->

URL Encoding:

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

Encodings

MD5:

96fee52b94d95fe8389bf61aaf45b4a0

SHA1:

5c83b32411d94bd338f3eb7808ebb422d6a2b2a4

Base64:

67+y