Unicode Finder

"븀" U+BE00(HANGUL SYLLABLE BYUM)

U+BE00
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BYUM

Programming

C
\uBE00
JavaScript
\uBE00
Java
\uBE00
Json
\uBE00
Python
\uBE00
Perl
\x{BE00}
PHP
\x{BE00}
Ruby
\u{BE00}
Rust
\u{BE00}
Go
\uBE00

Web

CSS
\00BE00
HtmlDecimal
븀
HtmlHexadecimal
븀
Url
%EB%B8%80

Code

MD5
a8e04c905eaae44e1828c0f88f8d6989
Sha1
7fafdd5ecf3aa99130193b290151355b0df44383
Base64
67iA

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE00';
console.log(char);  // Output: 븀

Java:

char c = '\uBE00';
System.out.println(c);  // Output: 븀

JSON:

{"text": "\uBE00"}  // Value: 븀

Python:

char = '\uBE00'
print(char)  # Output: 븀

Perl:

my $char = "\x{BE00}";
print $char;  # Output: 븀

PHP:

$char = "\x{BE00}";
echo $char;  // Output: 븀

Ruby:

char = "\u{BE00}"
puts char  # Output: 븀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48640;</p>  <!-- Display: 븀 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE00;</p>  <!-- Display: 븀 -->

URL Encoding:

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

Encodings

MD5:

a8e04c905eaae44e1828c0f88f8d6989

SHA1:

7fafdd5ecf3aa99130193b290151355b0df44383

Base64:

67iA