Unicode Finder

"뤮" U+B92E(HANGUL SYLLABLE RWELP)

U+B92E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWELP

Programming

C
\uB92E
JavaScript
\uB92E
Java
\uB92E
Json
\uB92E
Python
\uB92E
Perl
\x{B92E}
PHP
\x{B92E}
Ruby
\u{B92E}
Rust
\u{B92E}
Go
\uB92E

Web

CSS
\00B92E
HtmlDecimal
뤮
HtmlHexadecimal
뤮
Url
%EB%A4%AE

Code

MD5
9a2d7d688c342f31e94a0dbc731962cb
Sha1
2619fff2fd1349d835e14f8790360ab71eab2ced
Base64
66Su

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB92E';
console.log(char);  // Output: 뤮

Java:

char c = '\uB92E';
System.out.println(c);  // Output: 뤮

JSON:

{"text": "\uB92E"}  // Value: 뤮

Python:

char = '\uB92E'
print(char)  # Output: 뤮

Perl:

my $char = "\x{B92E}";
print $char;  # Output: 뤮

PHP:

$char = "\x{B92E}";
echo $char;  // Output: 뤮

Ruby:

char = "\u{B92E}"
puts char  # Output: 뤮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47406;</p>  <!-- Display: 뤮 -->

HTML Hexadecimal:

<p>HTML hex: &#xB92E;</p>  <!-- Display: 뤮 -->

URL Encoding:

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

Encodings

MD5:

9a2d7d688c342f31e94a0dbc731962cb

SHA1:

2619fff2fd1349d835e14f8790360ab71eab2ced

Base64:

66Su