Unicode Finder

"뤐" U+B910(HANGUL SYLLABLE RWEOLS)

U+B910
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWEOLS

Programming

C
\uB910
JavaScript
\uB910
Java
\uB910
Json
\uB910
Python
\uB910
Perl
\x{B910}
PHP
\x{B910}
Ruby
\u{B910}
Rust
\u{B910}
Go
\uB910

Web

CSS
\00B910
HtmlDecimal
뤐
HtmlHexadecimal
뤐
Url
%EB%A4%90

Code

MD5
962b724272e79320d8ce2b6044d5bdd6
Sha1
a07c5c9c4b684dd97ed34a880ddd51d89a4e672d
Base64
66SQ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB910';
console.log(char);  // Output: 뤐

Java:

char c = '\uB910';
System.out.println(c);  // Output: 뤐

JSON:

{"text": "\uB910"}  // Value: 뤐

Python:

char = '\uB910'
print(char)  # Output: 뤐

Perl:

my $char = "\x{B910}";
print $char;  # Output: 뤐

PHP:

$char = "\x{B910}";
echo $char;  // Output: 뤐

Ruby:

char = "\u{B910}"
puts char  # Output: 뤐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47376;</p>  <!-- Display: 뤐 -->

HTML Hexadecimal:

<p>HTML hex: &#xB910;</p>  <!-- Display: 뤐 -->

URL Encoding:

// 뤐 URL encoding
https://unicodefinder.com/search.php?query=%EB%A4%90

Encodings

MD5:

962b724272e79320d8ce2b6044d5bdd6

SHA1:

a07c5c9c4b684dd97ed34a880ddd51d89a4e672d

Base64:

66SQ