Unicode Finder

"딥" U+B525(HANGUL SYLLABLE DIB)

U+B525
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DIB

Programming

C
\uB525
JavaScript
\uB525
Java
\uB525
Json
\uB525
Python
\uB525
Perl
\x{B525}
PHP
\x{B525}
Ruby
\u{B525}
Rust
\u{B525}
Go
\uB525

Web

CSS
\00B525
HtmlDecimal
딥
HtmlHexadecimal
딥
Url
%EB%94%A5

Code

MD5
243e3008b1796d4be46517cc37618a4c
Sha1
c2841960d84565ee94f13af5fc04356795a3744f
Base64
65Sl

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB525';
console.log(char);  // Output: 딥

Java:

char c = '\uB525';
System.out.println(c);  // Output: 딥

JSON:

{"text": "\uB525"}  // Value: 딥

Python:

char = '\uB525'
print(char)  # Output: 딥

Perl:

my $char = "\x{B525}";
print $char;  # Output: 딥

PHP:

$char = "\x{B525}";
echo $char;  // Output: 딥

Ruby:

char = "\u{B525}"
puts char  # Output: 딥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46373;</p>  <!-- Display: 딥 -->

HTML Hexadecimal:

<p>HTML hex: &#xB525;</p>  <!-- Display: 딥 -->

URL Encoding:

// 딥 URL encoding
https://unicodefinder.com/search.php?query=%EB%94%A5

Encodings

MD5:

243e3008b1796d4be46517cc37618a4c

SHA1:

c2841960d84565ee94f13af5fc04356795a3744f

Base64:

65Sl