Unicode Finder

"밃" U+BC03(HANGUL SYLLABLE MILB)

U+BC03
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MILB

Programming

C
\uBC03
JavaScript
\uBC03
Java
\uBC03
Json
\uBC03
Python
\uBC03
Perl
\x{BC03}
PHP
\x{BC03}
Ruby
\u{BC03}
Rust
\u{BC03}
Go
\uBC03

Web

CSS
\00BC03
HtmlDecimal
밃
HtmlHexadecimal
밃
Url
%EB%B0%83

Code

MD5
7ecdc858b6c7df88ce98602d0b454883
Sha1
1783552fa66a2b65d2735b341a23950f8214336f
Base64
67CD

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC03';
console.log(char);  // Output: 밃

Java:

char c = '\uBC03';
System.out.println(c);  // Output: 밃

JSON:

{"text": "\uBC03"}  // Value: 밃

Python:

char = '\uBC03'
print(char)  # Output: 밃

Perl:

my $char = "\x{BC03}";
print $char;  # Output: 밃

PHP:

$char = "\x{BC03}";
echo $char;  // Output: 밃

Ruby:

char = "\u{BC03}"
puts char  # Output: 밃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48131;</p>  <!-- Display: 밃 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC03;</p>  <!-- Display: 밃 -->

URL Encoding:

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

Encodings

MD5:

7ecdc858b6c7df88ce98602d0b454883

SHA1:

1783552fa66a2b65d2735b341a23950f8214336f

Base64:

67CD