Unicode Finder

"볉" U+BCC9(HANGUL SYLLABLE BYEOLT)

U+BCC9
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BYEOLT

Programming

C
\uBCC9
JavaScript
\uBCC9
Java
\uBCC9
Json
\uBCC9
Python
\uBCC9
Perl
\x{BCC9}
PHP
\x{BCC9}
Ruby
\u{BCC9}
Rust
\u{BCC9}
Go
\uBCC9

Web

CSS
\00BCC9
HtmlDecimal
볉
HtmlHexadecimal
볉
Url
%EB%B3%89

Code

MD5
c653c1a4f1abf4ab96a6d39b68ed2eaa
Sha1
74f6fd31aa85c747968611a5a93b864a924d8657
Base64
67OJ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBCC9';
console.log(char);  // Output: 볉

Java:

char c = '\uBCC9';
System.out.println(c);  // Output: 볉

JSON:

{"text": "\uBCC9"}  // Value: 볉

Python:

char = '\uBCC9'
print(char)  # Output: 볉

Perl:

my $char = "\x{BCC9}";
print $char;  # Output: 볉

PHP:

$char = "\x{BCC9}";
echo $char;  // Output: 볉

Ruby:

char = "\u{BCC9}"
puts char  # Output: 볉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48329;</p>  <!-- Display: 볉 -->

HTML Hexadecimal:

<p>HTML hex: &#xBCC9;</p>  <!-- Display: 볉 -->

URL Encoding:

// 볉 URL encoding
https://unicodefinder.com/search.php?query=%EB%B3%89

Encodings

MD5:

c653c1a4f1abf4ab96a6d39b68ed2eaa

SHA1:

74f6fd31aa85c747968611a5a93b864a924d8657

Base64:

67OJ