Unicode Finder

"벀" U+BC80(HANGUL SYLLABLE BYAEK)

U+BC80
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BYAEK

Programming

C
\uBC80
JavaScript
\uBC80
Java
\uBC80
Json
\uBC80
Python
\uBC80
Perl
\x{BC80}
PHP
\x{BC80}
Ruby
\u{BC80}
Rust
\u{BC80}
Go
\uBC80

Web

CSS
\00BC80
HtmlDecimal
벀
HtmlHexadecimal
벀
Url
%EB%B2%80

Code

MD5
3c10946852fff8b722e703eff4729a49
Sha1
d93ae202532590e21fa35fe285b0f07810f6886c
Base64
67KA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC80';
console.log(char);  // Output: 벀

Java:

char c = '\uBC80';
System.out.println(c);  // Output: 벀

JSON:

{"text": "\uBC80"}  // Value: 벀

Python:

char = '\uBC80'
print(char)  # Output: 벀

Perl:

my $char = "\x{BC80}";
print $char;  # Output: 벀

PHP:

$char = "\x{BC80}";
echo $char;  // Output: 벀

Ruby:

char = "\u{BC80}"
puts char  # Output: 벀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48256;</p>  <!-- Display: 벀 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC80;</p>  <!-- Display: 벀 -->

URL Encoding:

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

Encodings

MD5:

3c10946852fff8b722e703eff4729a49

SHA1:

d93ae202532590e21fa35fe285b0f07810f6886c

Base64:

67KA