Unicode Finder

"맿" U+B9FF(HANGUL SYLLABLE MAEH)

맿
U+B9FF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE MAEH

Programming

C
\uB9FF
JavaScript
\uB9FF
Java
\uB9FF
Json
\uB9FF
Python
\uB9FF
Perl
\x{B9FF}
PHP
\x{B9FF}
Ruby
\u{B9FF}
Rust
\u{B9FF}
Go
\uB9FF

Web

CSS
\00B9FF
HtmlDecimal
맿
HtmlHexadecimal
맿
Url
%EB%A7%BF

Code

MD5
22ceadb2150e169fd3413e251117095d
Sha1
e2fedffcfc0d0be4b3dcb07491b2642d70c85354
Base64
66e/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB9FF';
console.log(char);  // Output: 맿

Java:

char c = '\uB9FF';
System.out.println(c);  // Output: 맿

JSON:

{"text": "\uB9FF"}  // Value: 맿

Python:

char = '\uB9FF'
print(char)  # Output: 맿

Perl:

my $char = "\x{B9FF}";
print $char;  # Output: 맿

PHP:

$char = "\x{B9FF}";
echo $char;  // Output: 맿

Ruby:

char = "\u{B9FF}"
puts char  # Output: 맿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47615;</p>  <!-- Display: 맿 -->

HTML Hexadecimal:

<p>HTML hex: &#xB9FF;</p>  <!-- Display: 맿 -->

URL Encoding:

// 맿 URL encoding
https://unicodefinder.com/search.php?query=%EB%A7%BF

Encodings

MD5:

22ceadb2150e169fd3413e251117095d

SHA1:

e2fedffcfc0d0be4b3dcb07491b2642d70c85354

Base64:

66e/