Unicode Finder

"뫵" U+BAF5(HANGUL SYLLABLE MWAENG)

U+BAF5
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE MWAENG

Programming

C
\uBAF5
JavaScript
\uBAF5
Java
\uBAF5
Json
\uBAF5
Python
\uBAF5
Perl
\x{BAF5}
PHP
\x{BAF5}
Ruby
\u{BAF5}
Rust
\u{BAF5}
Go
\uBAF5

Web

CSS
\00BAF5
HtmlDecimal
뫵
HtmlHexadecimal
뫵
Url
%EB%AB%B5

Code

MD5
003395943070f9f0f9d1389c6fef6a67
Sha1
dd64704c41254a48e12d50d22cd733b3fadb0f7d
Base64
66u1

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uBAF5';
console.log(char);  // Output: 뫵

Java:

char c = '\uBAF5';
System.out.println(c);  // Output: 뫵

JSON:

{"text": "\uBAF5"}  // Value: 뫵

Python:

char = '\uBAF5'
print(char)  # Output: 뫵

Perl:

my $char = "\x{BAF5}";
print $char;  # Output: 뫵

PHP:

$char = "\x{BAF5}";
echo $char;  // Output: 뫵

Ruby:

char = "\u{BAF5}"
puts char  # Output: 뫵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47861;</p>  <!-- Display: 뫵 -->

HTML Hexadecimal:

<p>HTML hex: &#xBAF5;</p>  <!-- Display: 뫵 -->

URL Encoding:

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

Encodings

MD5:

003395943070f9f0f9d1389c6fef6a67

SHA1:

dd64704c41254a48e12d50d22cd733b3fadb0f7d

Base64:

66u1