Unicode Finder

"빠" U+BE60(HANGUL SYLLABLE BBA)

U+BE60
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBA

Programming

C
\uBE60
JavaScript
\uBE60
Java
\uBE60
Json
\uBE60
Python
\uBE60
Perl
\x{BE60}
PHP
\x{BE60}
Ruby
\u{BE60}
Rust
\u{BE60}
Go
\uBE60

Web

CSS
\00BE60
HtmlDecimal
빠
HtmlHexadecimal
빠
Url
%EB%B9%A0

Code

MD5
e313233b7c2ebc68cfd4555a569d44ea
Sha1
9867f2e28aaff5a91a483b240d84e4b7be42d0cf
Base64
67mg

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE60';
console.log(char);  // Output: 빠

Java:

char c = '\uBE60';
System.out.println(c);  // Output: 빠

JSON:

{"text": "\uBE60"}  // Value: 빠

Python:

char = '\uBE60'
print(char)  # Output: 빠

Perl:

my $char = "\x{BE60}";
print $char;  # Output: 빠

PHP:

$char = "\x{BE60}";
echo $char;  // Output: 빠

Ruby:

char = "\u{BE60}"
puts char  # Output: 빠

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48736;</p>  <!-- Display: 빠 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE60;</p>  <!-- Display: 빠 -->

URL Encoding:

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

Encodings

MD5:

e313233b7c2ebc68cfd4555a569d44ea

SHA1:

9867f2e28aaff5a91a483b240d84e4b7be42d0cf

Base64:

67mg