Unicode Finder

"뮻" U+BBBB(HANGUL SYLLABLE MYUC)

U+BBBB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MYUC

Programming

C
\uBBBB
JavaScript
\uBBBB
Java
\uBBBB
Json
\uBBBB
Python
\uBBBB
Perl
\x{BBBB}
PHP
\x{BBBB}
Ruby
\u{BBBB}
Rust
\u{BBBB}
Go
\uBBBB

Web

CSS
\00BBBB
HtmlDecimal
뮻
HtmlHexadecimal
뮻
Url
%EB%AE%BB

Code

MD5
f6579f5c878dac856ea747d5a3ce547b
Sha1
ba66559665f92c72d713233589a2de41a4a105e3
Base64
6667

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBBBB';
console.log(char);  // Output: 뮻

Java:

char c = '\uBBBB';
System.out.println(c);  // Output: 뮻

JSON:

{"text": "\uBBBB"}  // Value: 뮻

Python:

char = '\uBBBB'
print(char)  # Output: 뮻

Perl:

my $char = "\x{BBBB}";
print $char;  # Output: 뮻

PHP:

$char = "\x{BBBB}";
echo $char;  // Output: 뮻

Ruby:

char = "\u{BBBB}"
puts char  # Output: 뮻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48059;</p>  <!-- Display: 뮻 -->

HTML Hexadecimal:

<p>HTML hex: &#xBBBB;</p>  <!-- Display: 뮻 -->

URL Encoding:

// 뮻 URL encoding
https://unicodefinder.com/search.php?query=%EB%AE%BB

Encodings

MD5:

f6579f5c878dac856ea747d5a3ce547b

SHA1:

ba66559665f92c72d713233589a2de41a4a105e3

Base64:

6667