Unicode Finder

"뤢" U+B922(HANGUL SYLLABLE RWEGG)

U+B922
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWEGG

Programming

C
\uB922
JavaScript
\uB922
Java
\uB922
Json
\uB922
Python
\uB922
Perl
\x{B922}
PHP
\x{B922}
Ruby
\u{B922}
Rust
\u{B922}
Go
\uB922

Web

CSS
\00B922
HtmlDecimal
뤢
HtmlHexadecimal
뤢
Url
%EB%A4%A2

Code

MD5
7999dce855523d6f64e12eb2e0407646
Sha1
d9bf73fb7af63d4794a2c747ad9561be2205c3a4
Base64
66Si

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB922';
console.log(char);  // Output: 뤢

Java:

char c = '\uB922';
System.out.println(c);  // Output: 뤢

JSON:

{"text": "\uB922"}  // Value: 뤢

Python:

char = '\uB922'
print(char)  # Output: 뤢

Perl:

my $char = "\x{B922}";
print $char;  # Output: 뤢

PHP:

$char = "\x{B922}";
echo $char;  // Output: 뤢

Ruby:

char = "\u{B922}"
puts char  # Output: 뤢

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47394;</p>  <!-- Display: 뤢 -->

HTML Hexadecimal:

<p>HTML hex: &#xB922;</p>  <!-- Display: 뤢 -->

URL Encoding:

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

Encodings

MD5:

7999dce855523d6f64e12eb2e0407646

SHA1:

d9bf73fb7af63d4794a2c747ad9561be2205c3a4

Base64:

66Si