Unicode Finder

"밴" U+BC34(HANGUL SYLLABLE BAEN)

U+BC34
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BAEN

Programming

C
\uBC34
JavaScript
\uBC34
Java
\uBC34
Json
\uBC34
Python
\uBC34
Perl
\x{BC34}
PHP
\x{BC34}
Ruby
\u{BC34}
Rust
\u{BC34}
Go
\uBC34

Web

CSS
\00BC34
HtmlDecimal
밴
HtmlHexadecimal
밴
Url
%EB%B0%B4

Code

MD5
99bd13a82c82af995235337a4379b65f
Sha1
ca139249b0a4d11ec1de44777031a9f9927f8510
Base64
67C0

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC34';
console.log(char);  // Output: 밴

Java:

char c = '\uBC34';
System.out.println(c);  // Output: 밴

JSON:

{"text": "\uBC34"}  // Value: 밴

Python:

char = '\uBC34'
print(char)  # Output: 밴

Perl:

my $char = "\x{BC34}";
print $char;  # Output: 밴

PHP:

$char = "\x{BC34}";
echo $char;  // Output: 밴

Ruby:

char = "\u{BC34}"
puts char  # Output: 밴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48180;</p>  <!-- Display: 밴 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC34;</p>  <!-- Display: 밴 -->

URL Encoding:

// 밴 URL encoding
https://unicodefinder.com/search.php?query=%EB%B0%B4

Encodings

MD5:

99bd13a82c82af995235337a4379b65f

SHA1:

ca139249b0a4d11ec1de44777031a9f9927f8510

Base64:

67C0