Unicode Finder

"뵛" U+BD5B(HANGUL SYLLABLE BOES)

U+BD5B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BOES

Programming

C
\uBD5B
JavaScript
\uBD5B
Java
\uBD5B
Json
\uBD5B
Python
\uBD5B
Perl
\x{BD5B}
PHP
\x{BD5B}
Ruby
\u{BD5B}
Rust
\u{BD5B}
Go
\uBD5B

Web

CSS
\00BD5B
HtmlDecimal
뵛
HtmlHexadecimal
뵛
Url
%EB%B5%9B

Code

MD5
e6eac07197b57d274fad3edc0cd07ef9
Sha1
7dfffcede7c00ea3dac4fb63ee60a1b03c69ac34
Base64
67Wb

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBD5B';
console.log(char);  // Output: 뵛

Java:

char c = '\uBD5B';
System.out.println(c);  // Output: 뵛

JSON:

{"text": "\uBD5B"}  // Value: 뵛

Python:

char = '\uBD5B'
print(char)  # Output: 뵛

Perl:

my $char = "\x{BD5B}";
print $char;  # Output: 뵛

PHP:

$char = "\x{BD5B}";
echo $char;  // Output: 뵛

Ruby:

char = "\u{BD5B}"
puts char  # Output: 뵛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48475;</p>  <!-- Display: 뵛 -->

HTML Hexadecimal:

<p>HTML hex: &#xBD5B;</p>  <!-- Display: 뵛 -->

URL Encoding:

// 뵛 URL encoding
https://unicodefinder.com/search.php?query=%EB%B5%9B

Encodings

MD5:

e6eac07197b57d274fad3edc0cd07ef9

SHA1:

7dfffcede7c00ea3dac4fb63ee60a1b03c69ac34

Base64:

67Wb