Unicode Finder

"뺍" U+BE8D(HANGUL SYLLABLE BBAEB)

U+BE8D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBAEB

Programming

C
\uBE8D
JavaScript
\uBE8D
Java
\uBE8D
Json
\uBE8D
Python
\uBE8D
Perl
\x{BE8D}
PHP
\x{BE8D}
Ruby
\u{BE8D}
Rust
\u{BE8D}
Go
\uBE8D

Web

CSS
\00BE8D
HtmlDecimal
뺍
HtmlHexadecimal
뺍
Url
%EB%BA%8D

Code

MD5
c9fe0a108acc85b547cef812fcbcc234
Sha1
8e82931d4cb593ddb2c4b6cea378d9d37c1a5ce2
Base64
67qN

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE8D';
console.log(char);  // Output: 뺍

Java:

char c = '\uBE8D';
System.out.println(c);  // Output: 뺍

JSON:

{"text": "\uBE8D"}  // Value: 뺍

Python:

char = '\uBE8D'
print(char)  # Output: 뺍

Perl:

my $char = "\x{BE8D}";
print $char;  # Output: 뺍

PHP:

$char = "\x{BE8D}";
echo $char;  // Output: 뺍

Ruby:

char = "\u{BE8D}"
puts char  # Output: 뺍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48781;</p>  <!-- Display: 뺍 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE8D;</p>  <!-- Display: 뺍 -->

URL Encoding:

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

Encodings

MD5:

c9fe0a108acc85b547cef812fcbcc234

SHA1:

8e82931d4cb593ddb2c4b6cea378d9d37c1a5ce2

Base64:

67qN