Unicode Finder

"뺋" U+BE8B(HANGUL SYLLABLE BBAELH)

U+BE8B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBAELH

Programming

C
\uBE8B
JavaScript
\uBE8B
Java
\uBE8B
Json
\uBE8B
Python
\uBE8B
Perl
\x{BE8B}
PHP
\x{BE8B}
Ruby
\u{BE8B}
Rust
\u{BE8B}
Go
\uBE8B

Web

CSS
\00BE8B
HtmlDecimal
뺋
HtmlHexadecimal
뺋
Url
%EB%BA%8B

Code

MD5
8b7f684d7ac6b6bf4775f2c0e456b56c
Sha1
0499d60a2f2525aed1387cea1c0602fc767dc9bf
Base64
67qL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE8B';
console.log(char);  // Output: 뺋

Java:

char c = '\uBE8B';
System.out.println(c);  // Output: 뺋

JSON:

{"text": "\uBE8B"}  // Value: 뺋

Python:

char = '\uBE8B'
print(char)  # Output: 뺋

Perl:

my $char = "\x{BE8B}";
print $char;  # Output: 뺋

PHP:

$char = "\x{BE8B}";
echo $char;  // Output: 뺋

Ruby:

char = "\u{BE8B}"
puts char  # Output: 뺋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48779;</p>  <!-- Display: 뺋 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE8B;</p>  <!-- Display: 뺋 -->

URL Encoding:

// 뺋 URL encoding
https://unicodefinder.com/search.php?query=%EB%BA%8B

Encodings

MD5:

8b7f684d7ac6b6bf4775f2c0e456b56c

SHA1:

0499d60a2f2525aed1387cea1c0602fc767dc9bf

Base64:

67qL