Unicode Finder

"븖" U+BE16(HANGUL SYLLABLE BEULM)

U+BE16
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BEULM

Programming

C
\uBE16
JavaScript
\uBE16
Java
\uBE16
Json
\uBE16
Python
\uBE16
Perl
\x{BE16}
PHP
\x{BE16}
Ruby
\u{BE16}
Rust
\u{BE16}
Go
\uBE16

Web

CSS
\00BE16
HtmlDecimal
븖
HtmlHexadecimal
븖
Url
%EB%B8%96

Code

MD5
d700211ae5abf80c19e806e468d4008a
Sha1
d80fd49e60a4ae7f964cf0ff14d64d752d640287
Base64
67iW

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE16';
console.log(char);  // Output: 븖

Java:

char c = '\uBE16';
System.out.println(c);  // Output: 븖

JSON:

{"text": "\uBE16"}  // Value: 븖

Python:

char = '\uBE16'
print(char)  # Output: 븖

Perl:

my $char = "\x{BE16}";
print $char;  # Output: 븖

PHP:

$char = "\x{BE16}";
echo $char;  // Output: 븖

Ruby:

char = "\u{BE16}"
puts char  # Output: 븖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48662;</p>  <!-- Display: 븖 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE16;</p>  <!-- Display: 븖 -->

URL Encoding:

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

Encodings

MD5:

d700211ae5abf80c19e806e468d4008a

SHA1:

d80fd49e60a4ae7f964cf0ff14d64d752d640287

Base64:

67iW