Unicode Finder

"벁" U+BC81(HANGUL SYLLABLE BYAET)

U+BC81
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BYAET

Programming

C
\uBC81
JavaScript
\uBC81
Java
\uBC81
Json
\uBC81
Python
\uBC81
Perl
\x{BC81}
PHP
\x{BC81}
Ruby
\u{BC81}
Rust
\u{BC81}
Go
\uBC81

Web

CSS
\00BC81
HtmlDecimal
벁
HtmlHexadecimal
벁
Url
%EB%B2%81

Code

MD5
d67028f3156f83d7d1ecd5ee6d2528ab
Sha1
c799c9eb844308e04b57befcc68d762fdef65892
Base64
67KB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC81';
console.log(char);  // Output: 벁

Java:

char c = '\uBC81';
System.out.println(c);  // Output: 벁

JSON:

{"text": "\uBC81"}  // Value: 벁

Python:

char = '\uBC81'
print(char)  # Output: 벁

Perl:

my $char = "\x{BC81}";
print $char;  # Output: 벁

PHP:

$char = "\x{BC81}";
echo $char;  // Output: 벁

Ruby:

char = "\u{BC81}"
puts char  # Output: 벁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48257;</p>  <!-- Display: 벁 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC81;</p>  <!-- Display: 벁 -->

URL Encoding:

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

Encodings

MD5:

d67028f3156f83d7d1ecd5ee6d2528ab

SHA1:

c799c9eb844308e04b57befcc68d762fdef65892

Base64:

67KB