Unicode Finder

"닻" U+B2FB(HANGUL SYLLABLE DAC)

U+B2FB
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DAC

Programming

C
\uB2FB
JavaScript
\uB2FB
Java
\uB2FB
Json
\uB2FB
Python
\uB2FB
Perl
\x{B2FB}
PHP
\x{B2FB}
Ruby
\u{B2FB}
Rust
\u{B2FB}
Go
\uB2FB

Web

CSS
\00B2FB
HtmlDecimal
닻
HtmlHexadecimal
닻
Url
%EB%8B%BB

Code

MD5
a9b5092e660cef1cf5843ea43795081a
Sha1
c68ccbc5ba294e237055c159e3deabef998cccb6
Base64
64u7

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB2FB';
console.log(char);  // Output: 닻

Java:

char c = '\uB2FB';
System.out.println(c);  // Output: 닻

JSON:

{"text": "\uB2FB"}  // Value: 닻

Python:

char = '\uB2FB'
print(char)  # Output: 닻

Perl:

my $char = "\x{B2FB}";
print $char;  # Output: 닻

PHP:

$char = "\x{B2FB}";
echo $char;  // Output: 닻

Ruby:

char = "\u{B2FB}"
puts char  # Output: 닻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45819;</p>  <!-- Display: 닻 -->

HTML Hexadecimal:

<p>HTML hex: &#xB2FB;</p>  <!-- Display: 닻 -->

URL Encoding:

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

Encodings

MD5:

a9b5092e660cef1cf5843ea43795081a

SHA1:

c68ccbc5ba294e237055c159e3deabef998cccb6

Base64:

64u7