Unicode Finder

"브" U+BE0C(HANGUL SYLLABLE BEU)

U+BE0C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BEU

Programming

C
\uBE0C
JavaScript
\uBE0C
Java
\uBE0C
Json
\uBE0C
Python
\uBE0C
Perl
\x{BE0C}
PHP
\x{BE0C}
Ruby
\u{BE0C}
Rust
\u{BE0C}
Go
\uBE0C

Web

CSS
\00BE0C
HtmlDecimal
브
HtmlHexadecimal
브
Url
%EB%B8%8C

Code

MD5
d768d06deb9b571a82d569858eaf4321
Sha1
30b708d7a340fc5c96f29c6a939ca084fbad1a19
Base64
67iM

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE0C';
console.log(char);  // Output: 브

Java:

char c = '\uBE0C';
System.out.println(c);  // Output: 브

JSON:

{"text": "\uBE0C"}  // Value: 브

Python:

char = '\uBE0C'
print(char)  # Output: 브

Perl:

my $char = "\x{BE0C}";
print $char;  # Output: 브

PHP:

$char = "\x{BE0C}";
echo $char;  // Output: 브

Ruby:

char = "\u{BE0C}"
puts char  # Output: 브

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48652;</p>  <!-- Display: 브 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE0C;</p>  <!-- Display: 브 -->

URL Encoding:

// 브 URL encoding
https://unicodefinder.com/search.php?query=%EB%B8%8C

Encodings

MD5:

d768d06deb9b571a82d569858eaf4321

SHA1:

30b708d7a340fc5c96f29c6a939ca084fbad1a19

Base64:

67iM