Unicode Finder

"뚫" U+B6AB(HANGUL SYLLABLE DDULH)

U+B6AB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDULH

Programming

C
\uB6AB
JavaScript
\uB6AB
Java
\uB6AB
Json
\uB6AB
Python
\uB6AB
Perl
\x{B6AB}
PHP
\x{B6AB}
Ruby
\u{B6AB}
Rust
\u{B6AB}
Go
\uB6AB

Web

CSS
\00B6AB
HtmlDecimal
뚫
HtmlHexadecimal
뚫
Url
%EB%9A%AB

Code

MD5
99adbad1fb7cea1f42868db571183ff4
Sha1
3bc0117a812dea926d9b8e15535076cda3072c28
Base64
65qr

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB6AB';
console.log(char);  // Output: 뚫

Java:

char c = '\uB6AB';
System.out.println(c);  // Output: 뚫

JSON:

{"text": "\uB6AB"}  // Value: 뚫

Python:

char = '\uB6AB'
print(char)  # Output: 뚫

Perl:

my $char = "\x{B6AB}";
print $char;  # Output: 뚫

PHP:

$char = "\x{B6AB}";
echo $char;  // Output: 뚫

Ruby:

char = "\u{B6AB}"
puts char  # Output: 뚫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46763;</p>  <!-- Display: 뚫 -->

HTML Hexadecimal:

<p>HTML hex: &#xB6AB;</p>  <!-- Display: 뚫 -->

URL Encoding:

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

Encodings

MD5:

99adbad1fb7cea1f42868db571183ff4

SHA1:

3bc0117a812dea926d9b8e15535076cda3072c28

Base64:

65qr