Unicode Finder

"뽞" U+BF5E(HANGUL SYLLABLE BBWAGG)

U+BF5E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWAGG

Programming

C
\uBF5E
JavaScript
\uBF5E
Java
\uBF5E
Json
\uBF5E
Python
\uBF5E
Perl
\x{BF5E}
PHP
\x{BF5E}
Ruby
\u{BF5E}
Rust
\u{BF5E}
Go
\uBF5E

Web

CSS
\00BF5E
HtmlDecimal
뽞
HtmlHexadecimal
뽞
Url
%EB%BD%9E

Code

MD5
50a4c4974757886278be301021fb3397
Sha1
f22dbedfd8c4eb8ff71522f1db8941d78f9ba437
Base64
672e

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBF5E';
console.log(char);  // Output: 뽞

Java:

char c = '\uBF5E';
System.out.println(c);  // Output: 뽞

JSON:

{"text": "\uBF5E"}  // Value: 뽞

Python:

char = '\uBF5E'
print(char)  # Output: 뽞

Perl:

my $char = "\x{BF5E}";
print $char;  # Output: 뽞

PHP:

$char = "\x{BF5E}";
echo $char;  // Output: 뽞

Ruby:

char = "\u{BF5E}"
puts char  # Output: 뽞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48990;</p>  <!-- Display: 뽞 -->

HTML Hexadecimal:

<p>HTML hex: &#xBF5E;</p>  <!-- Display: 뽞 -->

URL Encoding:

// 뽞 URL encoding
https://unicodefinder.com/search.php?query=%EB%BD%9E

Encodings

MD5:

50a4c4974757886278be301021fb3397

SHA1:

f22dbedfd8c4eb8ff71522f1db8941d78f9ba437

Base64:

672e