Unicode Finder

"벫" U+BCAB(HANGUL SYLLABLE BELB)

U+BCAB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BELB

Programming

C
\uBCAB
JavaScript
\uBCAB
Java
\uBCAB
Json
\uBCAB
Python
\uBCAB
Perl
\x{BCAB}
PHP
\x{BCAB}
Ruby
\u{BCAB}
Rust
\u{BCAB}
Go
\uBCAB

Web

CSS
\00BCAB
HtmlDecimal
벫
HtmlHexadecimal
벫
Url
%EB%B2%AB

Code

MD5
0dd5a7831eee052ce992c13bf2b1f781
Sha1
1d405278b8d2b1d7a696942aed42743b9bc44bf5
Base64
67Kr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBCAB';
console.log(char);  // Output: 벫

Java:

char c = '\uBCAB';
System.out.println(c);  // Output: 벫

JSON:

{"text": "\uBCAB"}  // Value: 벫

Python:

char = '\uBCAB'
print(char)  # Output: 벫

Perl:

my $char = "\x{BCAB}";
print $char;  # Output: 벫

PHP:

$char = "\x{BCAB}";
echo $char;  // Output: 벫

Ruby:

char = "\u{BCAB}"
puts char  # Output: 벫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48299;</p>  <!-- Display: 벫 -->

HTML Hexadecimal:

<p>HTML hex: &#xBCAB;</p>  <!-- Display: 벫 -->

URL Encoding:

// 벫 URL encoding
https://unicodefinder.com/search.php?query=%EB%B2%AB

Encodings

MD5:

0dd5a7831eee052ce992c13bf2b1f781

SHA1:

1d405278b8d2b1d7a696942aed42743b9bc44bf5

Base64:

67Kr