Unicode Finder

"뽸" U+BF78(HANGUL SYLLABLE BBWAE)

U+BF78
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWAE

Programming

C
\uBF78
JavaScript
\uBF78
Java
\uBF78
Json
\uBF78
Python
\uBF78
Perl
\x{BF78}
PHP
\x{BF78}
Ruby
\u{BF78}
Rust
\u{BF78}
Go
\uBF78

Web

CSS
\00BF78
HtmlDecimal
뽸
HtmlHexadecimal
뽸
Url
%EB%BD%B8

Code

MD5
07d15a39a1a2bebc62da7db1df7db4a9
Sha1
b0bfd10627390e79601f76a0de4eef38ec55bd65
Base64
6724

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF78';
console.log(char);  // Output: 뽸

Java:

char c = '\uBF78';
System.out.println(c);  // Output: 뽸

JSON:

{"text": "\uBF78"}  // Value: 뽸

Python:

char = '\uBF78'
print(char)  # Output: 뽸

Perl:

my $char = "\x{BF78}";
print $char;  # Output: 뽸

PHP:

$char = "\x{BF78}";
echo $char;  // Output: 뽸

Ruby:

char = "\u{BF78}"
puts char  # Output: 뽸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49016;</p>  <!-- Display: 뽸 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF78;</p>  <!-- Display: 뽸 -->

URL Encoding:

// 뽸 URL encoding
https://unicodefinder.com/search.php?query=%EB%BD%B8

Encodings

MD5:

07d15a39a1a2bebc62da7db1df7db4a9

SHA1:

b0bfd10627390e79601f76a0de4eef38ec55bd65

Base64:

6724