Unicode Finder

"뽻" U+BF7B(HANGUL SYLLABLE BBWAEGS)

U+BF7B
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWAEGS

Programming

C
\uBF7B
JavaScript
\uBF7B
Java
\uBF7B
Json
\uBF7B
Python
\uBF7B
Perl
\x{BF7B}
PHP
\x{BF7B}
Ruby
\u{BF7B}
Rust
\u{BF7B}
Go
\uBF7B

Web

CSS
\00BF7B
HtmlDecimal
뽻
HtmlHexadecimal
뽻
Url
%EB%BD%BB

Code

MD5
105a6b41a34c10d170a3b7560f830a88
Sha1
a303982f1ac51f269378ebee25fb0c3a089080c7
Base64
6727

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF7B';
console.log(char);  // Output: 뽻

Java:

char c = '\uBF7B';
System.out.println(c);  // Output: 뽻

JSON:

{"text": "\uBF7B"}  // Value: 뽻

Python:

char = '\uBF7B'
print(char)  # Output: 뽻

Perl:

my $char = "\x{BF7B}";
print $char;  # Output: 뽻

PHP:

$char = "\x{BF7B}";
echo $char;  // Output: 뽻

Ruby:

char = "\u{BF7B}"
puts char  # Output: 뽻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49019;</p>  <!-- Display: 뽻 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF7B;</p>  <!-- Display: 뽻 -->

URL Encoding:

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

Encodings

MD5:

105a6b41a34c10d170a3b7560f830a88

SHA1:

a303982f1ac51f269378ebee25fb0c3a089080c7

Base64:

6727