Unicode Finder

"뿽" U+BFFD(HANGUL SYLLABLE BBWEONG)

U+BFFD
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWEONG

Programming

C
\uBFFD
JavaScript
\uBFFD
Java
\uBFFD
Json
\uBFFD
Python
\uBFFD
Perl
\x{BFFD}
PHP
\x{BFFD}
Ruby
\u{BFFD}
Rust
\u{BFFD}
Go
\uBFFD

Web

CSS
\00BFFD
HtmlDecimal
뿽
HtmlHexadecimal
뿽
Url
%EB%BF%BD

Code

MD5
954facf48d262b0e157b0002b843ecff
Sha1
db20424ac1e6c21c7fe69a5e3bc573b8773ca17f
Base64
67+9

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFFD';
console.log(char);  // Output: 뿽

Java:

char c = '\uBFFD';
System.out.println(c);  // Output: 뿽

JSON:

{"text": "\uBFFD"}  // Value: 뿽

Python:

char = '\uBFFD'
print(char)  # Output: 뿽

Perl:

my $char = "\x{BFFD}";
print $char;  # Output: 뿽

PHP:

$char = "\x{BFFD}";
echo $char;  // Output: 뿽

Ruby:

char = "\u{BFFD}"
puts char  # Output: 뿽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49149;</p>  <!-- Display: 뿽 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFFD;</p>  <!-- Display: 뿽 -->

URL Encoding:

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

Encodings

MD5:

954facf48d262b0e157b0002b843ecff

SHA1:

db20424ac1e6c21c7fe69a5e3bc573b8773ca17f

Base64:

67+9