Unicode Finder

"닶" U+B2F6(HANGUL SYLLABLE DABS)

U+B2F6
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DABS

Programming

C
\uB2F6
JavaScript
\uB2F6
Java
\uB2F6
Json
\uB2F6
Python
\uB2F6
Perl
\x{B2F6}
PHP
\x{B2F6}
Ruby
\u{B2F6}
Rust
\u{B2F6}
Go
\uB2F6

Web

CSS
\00B2F6
HtmlDecimal
닶
HtmlHexadecimal
닶
Url
%EB%8B%B6

Code

MD5
fd2aadcd16620e61c85ab1eeb13a80e2
Sha1
9e64d7f7e0eff1768acf6a248d68a6ee9f945529
Base64
64u2

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB2F6';
console.log(char);  // Output: 닶

Java:

char c = '\uB2F6';
System.out.println(c);  // Output: 닶

JSON:

{"text": "\uB2F6"}  // Value: 닶

Python:

char = '\uB2F6'
print(char)  # Output: 닶

Perl:

my $char = "\x{B2F6}";
print $char;  # Output: 닶

PHP:

$char = "\x{B2F6}";
echo $char;  // Output: 닶

Ruby:

char = "\u{B2F6}"
puts char  # Output: 닶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45814;</p>  <!-- Display: 닶 -->

HTML Hexadecimal:

<p>HTML hex: &#xB2F6;</p>  <!-- Display: 닶 -->

URL Encoding:

// 닶 URL encoding
https://unicodefinder.com/search.php?query=%EB%8B%B6

Encodings

MD5:

fd2aadcd16620e61c85ab1eeb13a80e2

SHA1:

9e64d7f7e0eff1768acf6a248d68a6ee9f945529

Base64:

64u2