Unicode Finder

"뚰" U+B6B0(HANGUL SYLLABLE DDUSS)

U+B6B0
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDUSS

Programming

C
\uB6B0
JavaScript
\uB6B0
Java
\uB6B0
Json
\uB6B0
Python
\uB6B0
Perl
\x{B6B0}
PHP
\x{B6B0}
Ruby
\u{B6B0}
Rust
\u{B6B0}
Go
\uB6B0

Web

CSS
\00B6B0
HtmlDecimal
뚰
HtmlHexadecimal
뚰
Url
%EB%9A%B0

Code

MD5
72e238d4bcee1dc264f6d7e354ef68e4
Sha1
ca54c21bfb323cb4f42eb7eee648df92d8752675
Base64
65qw

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB6B0';
console.log(char);  // Output: 뚰

Java:

char c = '\uB6B0';
System.out.println(c);  // Output: 뚰

JSON:

{"text": "\uB6B0"}  // Value: 뚰

Python:

char = '\uB6B0'
print(char)  # Output: 뚰

Perl:

my $char = "\x{B6B0}";
print $char;  # Output: 뚰

PHP:

$char = "\x{B6B0}";
echo $char;  // Output: 뚰

Ruby:

char = "\u{B6B0}"
puts char  # Output: 뚰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46768;</p>  <!-- Display: 뚰 -->

HTML Hexadecimal:

<p>HTML hex: &#xB6B0;</p>  <!-- Display: 뚰 -->

URL Encoding:

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

Encodings

MD5:

72e238d4bcee1dc264f6d7e354ef68e4

SHA1:

ca54c21bfb323cb4f42eb7eee648df92d8752675

Base64:

65qw