Unicode Finder

"뱋" U+BC4B(HANGUL SYLLABLE BAEH)

U+BC4B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BAEH

Programming

C
\uBC4B
JavaScript
\uBC4B
Java
\uBC4B
Json
\uBC4B
Python
\uBC4B
Perl
\x{BC4B}
PHP
\x{BC4B}
Ruby
\u{BC4B}
Rust
\u{BC4B}
Go
\uBC4B

Web

CSS
\00BC4B
HtmlDecimal
뱋
HtmlHexadecimal
뱋
Url
%EB%B1%8B

Code

MD5
c944c243b8eb75b28ee98253e17b37e9
Sha1
ac0ac7c93743fd55110a09da8358bab75da3940e
Base64
67GL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC4B';
console.log(char);  // Output: 뱋

Java:

char c = '\uBC4B';
System.out.println(c);  // Output: 뱋

JSON:

{"text": "\uBC4B"}  // Value: 뱋

Python:

char = '\uBC4B'
print(char)  # Output: 뱋

Perl:

my $char = "\x{BC4B}";
print $char;  # Output: 뱋

PHP:

$char = "\x{BC4B}";
echo $char;  // Output: 뱋

Ruby:

char = "\u{BC4B}"
puts char  # Output: 뱋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48203;</p>  <!-- Display: 뱋 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC4B;</p>  <!-- Display: 뱋 -->

URL Encoding:

// 뱋 URL encoding
https://unicodefinder.com/search.php?query=%EB%B1%8B

Encodings

MD5:

c944c243b8eb75b28ee98253e17b37e9

SHA1:

ac0ac7c93743fd55110a09da8358bab75da3940e

Base64:

67GL