Unicode Finder

"뿜" U+BFDC(HANGUL SYLLABLE BBUM)

U+BFDC
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBUM

Programming

C
\uBFDC
JavaScript
\uBFDC
Java
\uBFDC
Json
\uBFDC
Python
\uBFDC
Perl
\x{BFDC}
PHP
\x{BFDC}
Ruby
\u{BFDC}
Rust
\u{BFDC}
Go
\uBFDC

Web

CSS
\00BFDC
HtmlDecimal
뿜
HtmlHexadecimal
뿜
Url
%EB%BF%9C

Code

MD5
9104f2da2668a277ae3b8135bf535b1f
Sha1
c122df40e9c7960801ab14e6a0bd3d57f6db5bee
Base64
67+c

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFDC';
console.log(char);  // Output: 뿜

Java:

char c = '\uBFDC';
System.out.println(c);  // Output: 뿜

JSON:

{"text": "\uBFDC"}  // Value: 뿜

Python:

char = '\uBFDC'
print(char)  # Output: 뿜

Perl:

my $char = "\x{BFDC}";
print $char;  # Output: 뿜

PHP:

$char = "\x{BFDC}";
echo $char;  // Output: 뿜

Ruby:

char = "\u{BFDC}"
puts char  # Output: 뿜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49116;</p>  <!-- Display: 뿜 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFDC;</p>  <!-- Display: 뿜 -->

URL Encoding:

// 뿜 URL encoding
https://unicodefinder.com/search.php?query=%EB%BF%9C

Encodings

MD5:

9104f2da2668a277ae3b8135bf535b1f

SHA1:

c122df40e9c7960801ab14e6a0bd3d57f6db5bee

Base64:

67+c