Unicode Finder

"뒐" U+B490(HANGUL SYLLABLE DWEL)

U+B490
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWEL

Programming

C
\uB490
JavaScript
\uB490
Java
\uB490
Json
\uB490
Python
\uB490
Perl
\x{B490}
PHP
\x{B490}
Ruby
\u{B490}
Rust
\u{B490}
Go
\uB490

Web

CSS
\00B490
HtmlDecimal
뒐
HtmlHexadecimal
뒐
Url
%EB%92%90

Code

MD5
d91999297b0a700b9adfcc4a577e75e8
Sha1
f3bfad340b164b9047978101c037cdbceff443c9
Base64
65KQ

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB490';
console.log(char);  // Output: 뒐

Java:

char c = '\uB490';
System.out.println(c);  // Output: 뒐

JSON:

{"text": "\uB490"}  // Value: 뒐

Python:

char = '\uB490'
print(char)  # Output: 뒐

Perl:

my $char = "\x{B490}";
print $char;  # Output: 뒐

PHP:

$char = "\x{B490}";
echo $char;  // Output: 뒐

Ruby:

char = "\u{B490}"
puts char  # Output: 뒐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46224;</p>  <!-- Display: 뒐 -->

HTML Hexadecimal:

<p>HTML hex: &#xB490;</p>  <!-- Display: 뒐 -->

URL Encoding:

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

Encodings

MD5:

d91999297b0a700b9adfcc4a577e75e8

SHA1:

f3bfad340b164b9047978101c037cdbceff443c9

Base64:

65KQ