Unicode Finder

"뚡" U+B6A1(HANGUL SYLLABLE DDUNJ)

U+B6A1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDUNJ

Programming

C
\uB6A1
JavaScript
\uB6A1
Java
\uB6A1
Json
\uB6A1
Python
\uB6A1
Perl
\x{B6A1}
PHP
\x{B6A1}
Ruby
\u{B6A1}
Rust
\u{B6A1}
Go
\uB6A1

Web

CSS
\00B6A1
HtmlDecimal
뚡
HtmlHexadecimal
뚡
Url
%EB%9A%A1

Code

MD5
decbbaa4666916356b08be8f67825af6
Sha1
9e1f83d3661100883e7fa170ee04ef003ee49528
Base64
65qh

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB6A1';
console.log(char);  // Output: 뚡

Java:

char c = '\uB6A1';
System.out.println(c);  // Output: 뚡

JSON:

{"text": "\uB6A1"}  // Value: 뚡

Python:

char = '\uB6A1'
print(char)  # Output: 뚡

Perl:

my $char = "\x{B6A1}";
print $char;  # Output: 뚡

PHP:

$char = "\x{B6A1}";
echo $char;  // Output: 뚡

Ruby:

char = "\u{B6A1}"
puts char  # Output: 뚡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46753;</p>  <!-- Display: 뚡 -->

HTML Hexadecimal:

<p>HTML hex: &#xB6A1;</p>  <!-- Display: 뚡 -->

URL Encoding:

// 뚡 URL encoding
https://unicodefinder.com/search.php?query=%EB%9A%A1

Encodings

MD5:

decbbaa4666916356b08be8f67825af6

SHA1:

9e1f83d3661100883e7fa170ee04ef003ee49528

Base64:

65qh