Unicode Finder

"헵" U+D5F5(HANGUL SYLLABLE HEB)

U+D5F5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE HEB

Programming

C
\uD5F5
JavaScript
\uD5F5
Java
\uD5F5
Json
\uD5F5
Python
\uD5F5
Perl
\x{D5F5}
PHP
\x{D5F5}
Ruby
\u{D5F5}
Rust
\u{D5F5}
Go
\uD5F5

Web

CSS
\00D5F5
HtmlDecimal
헵
HtmlHexadecimal
헵
Url
%ED%97%B5

Code

MD5
78e54094d5db86d0532483d0ad9c99d0
Sha1
aa28893954b6e004d067920030bf139dd3e74228
Base64
7Ze1

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uD5F5';
console.log(char);  // Output: 헵

Java:

char c = '\uD5F5';
System.out.println(c);  // Output: 헵

JSON:

{"text": "\uD5F5"}  // Value: 헵

Python:

char = '\uD5F5'
print(char)  # Output: 헵

Perl:

my $char = "\x{D5F5}";
print $char;  # Output: 헵

PHP:

$char = "\x{D5F5}";
echo $char;  // Output: 헵

Ruby:

char = "\u{D5F5}"
puts char  # Output: 헵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#54773;</p>  <!-- Display: 헵 -->

HTML Hexadecimal:

<p>HTML hex: &#xD5F5;</p>  <!-- Display: 헵 -->

URL Encoding:

// 헵 URL encoding
https://unicodefinder.com/search.php?query=%ED%97%B5

Encodings

MD5:

78e54094d5db86d0532483d0ad9c99d0

SHA1:

aa28893954b6e004d067920030bf139dd3e74228

Base64:

7Ze1