Unicode Finder

"뤞" U+B91E(HANGUL SYLLABLE RWEOP)

U+B91E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWEOP

Programming

C
\uB91E
JavaScript
\uB91E
Java
\uB91E
Json
\uB91E
Python
\uB91E
Perl
\x{B91E}
PHP
\x{B91E}
Ruby
\u{B91E}
Rust
\u{B91E}
Go
\uB91E

Web

CSS
\00B91E
HtmlDecimal
뤞
HtmlHexadecimal
뤞
Url
%EB%A4%9E

Code

MD5
aaee9e4ba2eb12de50e3511867a4fe2e
Sha1
7b9464adba50a155e0d3932d3ea7bb16922e54ad
Base64
66Se

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB91E';
console.log(char);  // Output: 뤞

Java:

char c = '\uB91E';
System.out.println(c);  // Output: 뤞

JSON:

{"text": "\uB91E"}  // Value: 뤞

Python:

char = '\uB91E'
print(char)  # Output: 뤞

Perl:

my $char = "\x{B91E}";
print $char;  # Output: 뤞

PHP:

$char = "\x{B91E}";
echo $char;  // Output: 뤞

Ruby:

char = "\u{B91E}"
puts char  # Output: 뤞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47390;</p>  <!-- Display: 뤞 -->

HTML Hexadecimal:

<p>HTML hex: &#xB91E;</p>  <!-- Display: 뤞 -->

URL Encoding:

// 뤞 URL encoding
https://unicodefinder.com/search.php?query=%EB%A4%9E

Encodings

MD5:

aaee9e4ba2eb12de50e3511867a4fe2e

SHA1:

7b9464adba50a155e0d3932d3ea7bb16922e54ad

Base64:

66Se