Unicode Finder

"뷬" U+BDEC(HANGUL SYLLABLE BWIK)

U+BDEC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BWIK

Programming

C
\uBDEC
JavaScript
\uBDEC
Java
\uBDEC
Json
\uBDEC
Python
\uBDEC
Perl
\x{BDEC}
PHP
\x{BDEC}
Ruby
\u{BDEC}
Rust
\u{BDEC}
Go
\uBDEC

Web

CSS
\00BDEC
HtmlDecimal
뷬
HtmlHexadecimal
뷬
Url
%EB%B7%AC

Code

MD5
96dd945021945ec66a7e6b48ffc0017c
Sha1
d4621a5d6ca57677512892d1fad8c9d535c5fe28
Base64
67es

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBDEC';
console.log(char);  // Output: 뷬

Java:

char c = '\uBDEC';
System.out.println(c);  // Output: 뷬

JSON:

{"text": "\uBDEC"}  // Value: 뷬

Python:

char = '\uBDEC'
print(char)  # Output: 뷬

Perl:

my $char = "\x{BDEC}";
print $char;  # Output: 뷬

PHP:

$char = "\x{BDEC}";
echo $char;  // Output: 뷬

Ruby:

char = "\u{BDEC}"
puts char  # Output: 뷬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48620;</p>  <!-- Display: 뷬 -->

HTML Hexadecimal:

<p>HTML hex: &#xBDEC;</p>  <!-- Display: 뷬 -->

URL Encoding:

// 뷬 URL encoding
https://unicodefinder.com/search.php?query=%EB%B7%AC

Encodings

MD5:

96dd945021945ec66a7e6b48ffc0017c

SHA1:

d4621a5d6ca57677512892d1fad8c9d535c5fe28

Base64:

67es