Unicode Finder

"뤊" U+B90A(HANGUL SYLLABLE RWEONH)

U+B90A
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWEONH

Programming

C
\uB90A
JavaScript
\uB90A
Java
\uB90A
Json
\uB90A
Python
\uB90A
Perl
\x{B90A}
PHP
\x{B90A}
Ruby
\u{B90A}
Rust
\u{B90A}
Go
\uB90A

Web

CSS
\00B90A
HtmlDecimal
뤊
HtmlHexadecimal
뤊
Url
%EB%A4%8A

Code

MD5
2b3dc086ced537fc841034c9710cee34
Sha1
9f9a87bee73c12452a6391ea9ca1aea353a9c2c9
Base64
66SK

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB90A';
console.log(char);  // Output: 뤊

Java:

char c = '\uB90A';
System.out.println(c);  // Output: 뤊

JSON:

{"text": "\uB90A"}  // Value: 뤊

Python:

char = '\uB90A'
print(char)  # Output: 뤊

Perl:

my $char = "\x{B90A}";
print $char;  # Output: 뤊

PHP:

$char = "\x{B90A}";
echo $char;  // Output: 뤊

Ruby:

char = "\u{B90A}"
puts char  # Output: 뤊

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47370;</p>  <!-- Display: 뤊 -->

HTML Hexadecimal:

<p>HTML hex: &#xB90A;</p>  <!-- Display: 뤊 -->

URL Encoding:

// 뤊 URL encoding
https://unicodefinder.com/search.php?query=%EB%A4%8A

Encodings

MD5:

2b3dc086ced537fc841034c9710cee34

SHA1:

9f9a87bee73c12452a6391ea9ca1aea353a9c2c9

Base64:

66SK