Unicode Finder

"붷" U+BDB7(HANGUL SYLLABLE BWEOH)

U+BDB7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BWEOH

Programming

C
\uBDB7
JavaScript
\uBDB7
Java
\uBDB7
Json
\uBDB7
Python
\uBDB7
Perl
\x{BDB7}
PHP
\x{BDB7}
Ruby
\u{BDB7}
Rust
\u{BDB7}
Go
\uBDB7

Web

CSS
\00BDB7
HtmlDecimal
붷
HtmlHexadecimal
붷
Url
%EB%B6%B7

Code

MD5
50a153fe950c86515da3f2cc723d5943
Sha1
6d9e56fc4b53cf8edd0e41deff7a1e9dc27b6eb9
Base64
67a3

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBDB7';
console.log(char);  // Output: 붷

Java:

char c = '\uBDB7';
System.out.println(c);  // Output: 붷

JSON:

{"text": "\uBDB7"}  // Value: 붷

Python:

char = '\uBDB7'
print(char)  # Output: 붷

Perl:

my $char = "\x{BDB7}";
print $char;  # Output: 붷

PHP:

$char = "\x{BDB7}";
echo $char;  // Output: 붷

Ruby:

char = "\u{BDB7}"
puts char  # Output: 붷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48567;</p>  <!-- Display: 붷 -->

HTML Hexadecimal:

<p>HTML hex: &#xBDB7;</p>  <!-- Display: 붷 -->

URL Encoding:

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

Encodings

MD5:

50a153fe950c86515da3f2cc723d5943

SHA1:

6d9e56fc4b53cf8edd0e41deff7a1e9dc27b6eb9

Base64:

67a3