Unicode Finder

"뷦" U+BDE6(HANGUL SYLLABLE BWIBS)

U+BDE6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BWIBS

Programming

C
\uBDE6
JavaScript
\uBDE6
Java
\uBDE6
Json
\uBDE6
Python
\uBDE6
Perl
\x{BDE6}
PHP
\x{BDE6}
Ruby
\u{BDE6}
Rust
\u{BDE6}
Go
\uBDE6

Web

CSS
\00BDE6
HtmlDecimal
뷦
HtmlHexadecimal
뷦
Url
%EB%B7%A6

Code

MD5
3186c0b00e262e70c37eecf0eafd96fb
Sha1
a7eeeeb8d64e8077d3268648e7d73428bcac0001
Base64
67em

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBDE6';
console.log(char);  // Output: 뷦

Java:

char c = '\uBDE6';
System.out.println(c);  // Output: 뷦

JSON:

{"text": "\uBDE6"}  // Value: 뷦

Python:

char = '\uBDE6'
print(char)  # Output: 뷦

Perl:

my $char = "\x{BDE6}";
print $char;  # Output: 뷦

PHP:

$char = "\x{BDE6}";
echo $char;  // Output: 뷦

Ruby:

char = "\u{BDE6}"
puts char  # Output: 뷦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48614;</p>  <!-- Display: 뷦 -->

HTML Hexadecimal:

<p>HTML hex: &#xBDE6;</p>  <!-- Display: 뷦 -->

URL Encoding:

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

Encodings

MD5:

3186c0b00e262e70c37eecf0eafd96fb

SHA1:

a7eeeeb8d64e8077d3268648e7d73428bcac0001

Base64:

67em