Unicode Finder

"밋" U+BC0B(HANGUL SYLLABLE MIS)

U+BC0B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MIS

Programming

C
\uBC0B
JavaScript
\uBC0B
Java
\uBC0B
Json
\uBC0B
Python
\uBC0B
Perl
\x{BC0B}
PHP
\x{BC0B}
Ruby
\u{BC0B}
Rust
\u{BC0B}
Go
\uBC0B

Web

CSS
\00BC0B
HtmlDecimal
밋
HtmlHexadecimal
밋
Url
%EB%B0%8B

Code

MD5
20c4a7dad1474fa3f612478cfb5d2401
Sha1
cc3a0993938ae2cdf15e8bb4122dac4dd659ed1a
Base64
67CL

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC0B';
console.log(char);  // Output: 밋

Java:

char c = '\uBC0B';
System.out.println(c);  // Output: 밋

JSON:

{"text": "\uBC0B"}  // Value: 밋

Python:

char = '\uBC0B'
print(char)  # Output: 밋

Perl:

my $char = "\x{BC0B}";
print $char;  # Output: 밋

PHP:

$char = "\x{BC0B}";
echo $char;  // Output: 밋

Ruby:

char = "\u{BC0B}"
puts char  # Output: 밋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48139;</p>  <!-- Display: 밋 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC0B;</p>  <!-- Display: 밋 -->

URL Encoding:

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

Encodings

MD5:

20c4a7dad1474fa3f612478cfb5d2401

SHA1:

cc3a0993938ae2cdf15e8bb4122dac4dd659ed1a

Base64:

67CL