Unicode Finder

"볠" U+BCE0(HANGUL SYLLABLE BYEL)

U+BCE0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BYEL

Programming

C
\uBCE0
JavaScript
\uBCE0
Java
\uBCE0
Json
\uBCE0
Python
\uBCE0
Perl
\x{BCE0}
PHP
\x{BCE0}
Ruby
\u{BCE0}
Rust
\u{BCE0}
Go
\uBCE0

Web

CSS
\00BCE0
HtmlDecimal
볠
HtmlHexadecimal
볠
Url
%EB%B3%A0

Code

MD5
e945a5cd7687e0f09f2302ec875274b1
Sha1
cdc503194c9d29ceec2506cf5a35c9508532cb81
Base64
67Og

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBCE0';
console.log(char);  // Output: 볠

Java:

char c = '\uBCE0';
System.out.println(c);  // Output: 볠

JSON:

{"text": "\uBCE0"}  // Value: 볠

Python:

char = '\uBCE0'
print(char)  # Output: 볠

Perl:

my $char = "\x{BCE0}";
print $char;  # Output: 볠

PHP:

$char = "\x{BCE0}";
echo $char;  // Output: 볠

Ruby:

char = "\u{BCE0}"
puts char  # Output: 볠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48352;</p>  <!-- Display: 볠 -->

HTML Hexadecimal:

<p>HTML hex: &#xBCE0;</p>  <!-- Display: 볠 -->

URL Encoding:

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

Encodings

MD5:

e945a5cd7687e0f09f2302ec875274b1

SHA1:

cdc503194c9d29ceec2506cf5a35c9508532cb81

Base64:

67Og