Unicode Finder

"뫗" U+BAD7(HANGUL SYLLABLE MWAS)

U+BAD7
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MWAS

Programming

C
\uBAD7
JavaScript
\uBAD7
Java
\uBAD7
Json
\uBAD7
Python
\uBAD7
Perl
\x{BAD7}
PHP
\x{BAD7}
Ruby
\u{BAD7}
Rust
\u{BAD7}
Go
\uBAD7

Web

CSS
\00BAD7
HtmlDecimal
뫗
HtmlHexadecimal
뫗
Url
%EB%AB%97

Code

MD5
93f7833513b2eda9f9109b6d70e7c5e2
Sha1
1dbe8225a19e42ab932bc476154f271e3aae405c
Base64
66uX

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBAD7';
console.log(char);  // Output: 뫗

Java:

char c = '\uBAD7';
System.out.println(c);  // Output: 뫗

JSON:

{"text": "\uBAD7"}  // Value: 뫗

Python:

char = '\uBAD7'
print(char)  # Output: 뫗

Perl:

my $char = "\x{BAD7}";
print $char;  # Output: 뫗

PHP:

$char = "\x{BAD7}";
echo $char;  // Output: 뫗

Ruby:

char = "\u{BAD7}"
puts char  # Output: 뫗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47831;</p>  <!-- Display: 뫗 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAD7;</p>  <!-- Display: 뫗 -->

URL Encoding:

// 뫗 URL encoding
https://unicodefinder.com/search.php?query=%EB%AB%97

Encodings

MD5:

93f7833513b2eda9f9109b6d70e7c5e2

SHA1:

1dbe8225a19e42ab932bc476154f271e3aae405c

Base64:

66uX