Unicode Finder

"빬" U+BE6C(HANGUL SYLLABLE BBALS)

U+BE6C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBALS

Programming

C
\uBE6C
JavaScript
\uBE6C
Java
\uBE6C
Json
\uBE6C
Python
\uBE6C
Perl
\x{BE6C}
PHP
\x{BE6C}
Ruby
\u{BE6C}
Rust
\u{BE6C}
Go
\uBE6C

Web

CSS
\00BE6C
HtmlDecimal
빬
HtmlHexadecimal
빬
Url
%EB%B9%AC

Code

MD5
26254504ee482940b48151e91cf7f929
Sha1
dcf6d126e9dd6f94c80aad136c29c6a71feddf90
Base64
67ms

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE6C';
console.log(char);  // Output: 빬

Java:

char c = '\uBE6C';
System.out.println(c);  // Output: 빬

JSON:

{"text": "\uBE6C"}  // Value: 빬

Python:

char = '\uBE6C'
print(char)  # Output: 빬

Perl:

my $char = "\x{BE6C}";
print $char;  # Output: 빬

PHP:

$char = "\x{BE6C}";
echo $char;  // Output: 빬

Ruby:

char = "\u{BE6C}"
puts char  # Output: 빬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48748;</p>  <!-- Display: 빬 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE6C;</p>  <!-- Display: 빬 -->

URL Encoding:

// 빬 URL encoding
https://unicodefinder.com/search.php?query=%EB%B9%AC

Encodings

MD5:

26254504ee482940b48151e91cf7f929

SHA1:

dcf6d126e9dd6f94c80aad136c29c6a71feddf90

Base64:

67ms