Unicode Finder

"둱" U+B471(HANGUL SYLLABLE DWEONJ)

U+B471
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DWEONJ

Programming

C
\uB471
JavaScript
\uB471
Java
\uB471
Json
\uB471
Python
\uB471
Perl
\x{B471}
PHP
\x{B471}
Ruby
\u{B471}
Rust
\u{B471}
Go
\uB471

Web

CSS
\00B471
HtmlDecimal
둱
HtmlHexadecimal
둱
Url
%EB%91%B1

Code

MD5
57742a0f413f6ff0436650885f507697
Sha1
49a4fb3a62504faa780eef352c2cf3c3a33592a6
Base64
65Gx

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB471';
console.log(char);  // Output: 둱

Java:

char c = '\uB471';
System.out.println(c);  // Output: 둱

JSON:

{"text": "\uB471"}  // Value: 둱

Python:

char = '\uB471'
print(char)  # Output: 둱

Perl:

my $char = "\x{B471}";
print $char;  # Output: 둱

PHP:

$char = "\x{B471}";
echo $char;  // Output: 둱

Ruby:

char = "\u{B471}"
puts char  # Output: 둱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46193;</p>  <!-- Display: 둱 -->

HTML Hexadecimal:

<p>HTML hex: &#xB471;</p>  <!-- Display: 둱 -->

URL Encoding:

// 둱 URL encoding
https://unicodefinder.com/search.php?query=%EB%91%B1

Encodings

MD5:

57742a0f413f6ff0436650885f507697

SHA1:

49a4fb3a62504faa780eef352c2cf3c3a33592a6

Base64:

65Gx