Unicode Finder

"믌" U+BBCC(HANGUL SYLLABLE MEULS)

U+BBCC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MEULS

Programming

C
\uBBCC
JavaScript
\uBBCC
Java
\uBBCC
Json
\uBBCC
Python
\uBBCC
Perl
\x{BBCC}
PHP
\x{BBCC}
Ruby
\u{BBCC}
Rust
\u{BBCC}
Go
\uBBCC

Web

CSS
\00BBCC
HtmlDecimal
믌
HtmlHexadecimal
믌
Url
%EB%AF%8C

Code

MD5
3494d0bb62deba7257bb350a6da4119d
Sha1
a24f5e83216772601fe5095362d265ffcc396ec3
Base64
66+M

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBCC';
console.log(char);  // Output: 믌

Java:

char c = '\uBBCC';
System.out.println(c);  // Output: 믌

JSON:

{"text": "\uBBCC"}  // Value: 믌

Python:

char = '\uBBCC'
print(char)  # Output: 믌

Perl:

my $char = "\x{BBCC}";
print $char;  # Output: 믌

PHP:

$char = "\x{BBCC}";
echo $char;  // Output: 믌

Ruby:

char = "\u{BBCC}"
puts char  # Output: 믌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48076;</p>  <!-- Display: 믌 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBCC;</p>  <!-- Display: 믌 -->

URL Encoding:

// 믌 URL encoding
https://unicodefinder.com/search.php?query=%EB%AF%8C

Encodings

MD5:

3494d0bb62deba7257bb350a6da4119d

SHA1:

a24f5e83216772601fe5095362d265ffcc396ec3

Base64:

66+M