Unicode Finder

"뽲" U+BF72(HANGUL SYLLABLE BBWAJ)

U+BF72
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWAJ

Programming

C
\uBF72
JavaScript
\uBF72
Java
\uBF72
Json
\uBF72
Python
\uBF72
Perl
\x{BF72}
PHP
\x{BF72}
Ruby
\u{BF72}
Rust
\u{BF72}
Go
\uBF72

Web

CSS
\00BF72
HtmlDecimal
뽲
HtmlHexadecimal
뽲
Url
%EB%BD%B2

Code

MD5
56e4c4e31d616f62425d3dcb011c3427
Sha1
c1e217551380f9ca53eec4e7b66c64a97ef963ee
Base64
672y

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF72';
console.log(char);  // Output: 뽲

Java:

char c = '\uBF72';
System.out.println(c);  // Output: 뽲

JSON:

{"text": "\uBF72"}  // Value: 뽲

Python:

char = '\uBF72'
print(char)  # Output: 뽲

Perl:

my $char = "\x{BF72}";
print $char;  # Output: 뽲

PHP:

$char = "\x{BF72}";
echo $char;  // Output: 뽲

Ruby:

char = "\u{BF72}"
puts char  # Output: 뽲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49010;</p>  <!-- Display: 뽲 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF72;</p>  <!-- Display: 뽲 -->

URL Encoding:

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

Encodings

MD5:

56e4c4e31d616f62425d3dcb011c3427

SHA1:

c1e217551380f9ca53eec4e7b66c64a97ef963ee

Base64:

672y