Unicode Finder

"밎" U+BC0E(HANGUL SYLLABLE MIJ)

U+BC0E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MIJ

Programming

C
\uBC0E
JavaScript
\uBC0E
Java
\uBC0E
Json
\uBC0E
Python
\uBC0E
Perl
\x{BC0E}
PHP
\x{BC0E}
Ruby
\u{BC0E}
Rust
\u{BC0E}
Go
\uBC0E

Web

CSS
\00BC0E
HtmlDecimal
밎
HtmlHexadecimal
밎
Url
%EB%B0%8E

Code

MD5
17af664f5ed00a99fe99b37d54116669
Sha1
477b0792127976a1d8f6b4e8fa65de01b8ce6ed4
Base64
67CO

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBC0E';
console.log(char);  // Output: 밎

Java:

char c = '\uBC0E';
System.out.println(c);  // Output: 밎

JSON:

{"text": "\uBC0E"}  // Value: 밎

Python:

char = '\uBC0E'
print(char)  # Output: 밎

Perl:

my $char = "\x{BC0E}";
print $char;  # Output: 밎

PHP:

$char = "\x{BC0E}";
echo $char;  // Output: 밎

Ruby:

char = "\u{BC0E}"
puts char  # Output: 밎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48142;</p>  <!-- Display: 밎 -->

HTML Hexadecimal:

<p>HTML hex: &#xBC0E;</p>  <!-- Display: 밎 -->

URL Encoding:

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

Encodings

MD5:

17af664f5ed00a99fe99b37d54116669

SHA1:

477b0792127976a1d8f6b4e8fa65de01b8ce6ed4

Base64:

67CO