Unicode Finder

"뼂" U+BF02(HANGUL SYLLABLE BBEJ)

U+BF02
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBEJ

Programming

C
\uBF02
JavaScript
\uBF02
Java
\uBF02
Json
\uBF02
Python
\uBF02
Perl
\x{BF02}
PHP
\x{BF02}
Ruby
\u{BF02}
Rust
\u{BF02}
Go
\uBF02

Web

CSS
\00BF02
HtmlDecimal
뼂
HtmlHexadecimal
뼂
Url
%EB%BC%82

Code

MD5
e6ee71e8da85898a777240ed32699f70
Sha1
43c9411de7f891320cfb816102be9cef72308a71
Base64
67yC

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF02';
console.log(char);  // Output: 뼂

Java:

char c = '\uBF02';
System.out.println(c);  // Output: 뼂

JSON:

{"text": "\uBF02"}  // Value: 뼂

Python:

char = '\uBF02'
print(char)  # Output: 뼂

Perl:

my $char = "\x{BF02}";
print $char;  # Output: 뼂

PHP:

$char = "\x{BF02}";
echo $char;  // Output: 뼂

Ruby:

char = "\u{BF02}"
puts char  # Output: 뼂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48898;</p>  <!-- Display: 뼂 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF02;</p>  <!-- Display: 뼂 -->

URL Encoding:

// 뼂 URL encoding
https://unicodefinder.com/search.php?query=%EB%BC%82

Encodings

MD5:

e6ee71e8da85898a777240ed32699f70

SHA1:

43c9411de7f891320cfb816102be9cef72308a71

Base64:

67yC