Unicode Finder

"벆" U+BC86(HANGUL SYLLABLE BEOGG)

U+BC86
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BEOGG

Programming

C
\uBC86
JavaScript
\uBC86
Java
\uBC86
Json
\uBC86
Python
\uBC86
Perl
\x{BC86}
PHP
\x{BC86}
Ruby
\u{BC86}
Rust
\u{BC86}
Go
\uBC86

Web

CSS
\00BC86
HtmlDecimal
벆
HtmlHexadecimal
벆
Url
%EB%B2%86

Code

MD5
c6d57537b6361b6bf2df5ca2c7fb094c
Sha1
ac736ca350b2741de5448361fe9dfc2ee2536892
Base64
67KG

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC86';
console.log(char);  // Output: 벆

Java:

char c = '\uBC86';
System.out.println(c);  // Output: 벆

JSON:

{"text": "\uBC86"}  // Value: 벆

Python:

char = '\uBC86'
print(char)  # Output: 벆

Perl:

my $char = "\x{BC86}";
print $char;  # Output: 벆

PHP:

$char = "\x{BC86}";
echo $char;  // Output: 벆

Ruby:

char = "\u{BC86}"
puts char  # Output: 벆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48262;</p>  <!-- Display: 벆 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC86;</p>  <!-- Display: 벆 -->

URL Encoding:

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

Encodings

MD5:

c6d57537b6361b6bf2df5ca2c7fb094c

SHA1:

ac736ca350b2741de5448361fe9dfc2ee2536892

Base64:

67KG