Unicode Finder

"뱂" U+BC42(HANGUL SYLLABLE BAEBS)

U+BC42
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BAEBS

Programming

C
\uBC42
JavaScript
\uBC42
Java
\uBC42
Json
\uBC42
Python
\uBC42
Perl
\x{BC42}
PHP
\x{BC42}
Ruby
\u{BC42}
Rust
\u{BC42}
Go
\uBC42

Web

CSS
\00BC42
HtmlDecimal
뱂
HtmlHexadecimal
뱂
Url
%EB%B1%82

Code

MD5
c1f2f4b63378b5628a98c458d5ef44df
Sha1
382e21de2dc07f3af811218dfb9d740baf4f3f0e
Base64
67GC

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC42';
console.log(char);  // Output: 뱂

Java:

char c = '\uBC42';
System.out.println(c);  // Output: 뱂

JSON:

{"text": "\uBC42"}  // Value: 뱂

Python:

char = '\uBC42'
print(char)  # Output: 뱂

Perl:

my $char = "\x{BC42}";
print $char;  # Output: 뱂

PHP:

$char = "\x{BC42}";
echo $char;  // Output: 뱂

Ruby:

char = "\u{BC42}"
puts char  # Output: 뱂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48194;</p>  <!-- Display: 뱂 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC42;</p>  <!-- Display: 뱂 -->

URL Encoding:

// 뱂 URL encoding
https://unicodefinder.com/search.php?query=%EB%B1%82

Encodings

MD5:

c1f2f4b63378b5628a98c458d5ef44df

SHA1:

382e21de2dc07f3af811218dfb9d740baf4f3f0e

Base64:

67GC