Unicode Finder

"뺑" U+BE91(HANGUL SYLLABLE BBAENG)

U+BE91
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBAENG

Programming

C
\uBE91
JavaScript
\uBE91
Java
\uBE91
Json
\uBE91
Python
\uBE91
Perl
\x{BE91}
PHP
\x{BE91}
Ruby
\u{BE91}
Rust
\u{BE91}
Go
\uBE91

Web

CSS
\00BE91
HtmlDecimal
뺑
HtmlHexadecimal
뺑
Url
%EB%BA%91

Code

MD5
fc6dfdef9172b4074575bbeacb30a265
Sha1
519521e9cd68e30d6f472216ca773288ea208a75
Base64
67qR

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE91';
console.log(char);  // Output: 뺑

Java:

char c = '\uBE91';
System.out.println(c);  // Output: 뺑

JSON:

{"text": "\uBE91"}  // Value: 뺑

Python:

char = '\uBE91'
print(char)  # Output: 뺑

Perl:

my $char = "\x{BE91}";
print $char;  # Output: 뺑

PHP:

$char = "\x{BE91}";
echo $char;  // Output: 뺑

Ruby:

char = "\u{BE91}"
puts char  # Output: 뺑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48785;</p>  <!-- Display: 뺑 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE91;</p>  <!-- Display: 뺑 -->

URL Encoding:

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

Encodings

MD5:

fc6dfdef9172b4074575bbeacb30a265

SHA1:

519521e9cd68e30d6f472216ca773288ea208a75

Base64:

67qR