Unicode Finder

"뿯" U+BFEF(HANGUL SYLLABLE BBWEOD)

U+BFEF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBWEOD

Programming

C
\uBFEF
JavaScript
\uBFEF
Java
\uBFEF
Json
\uBFEF
Python
\uBFEF
Perl
\x{BFEF}
PHP
\x{BFEF}
Ruby
\u{BFEF}
Rust
\u{BFEF}
Go
\uBFEF

Web

CSS
\00BFEF
HtmlDecimal
뿯
HtmlHexadecimal
뿯
Url
%EB%BF%AF

Code

MD5
afe4666605ba27ca009461bedc032797
Sha1
e0058573d1aa4adaa96d42cecde361971416d04e
Base64
67+v

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFEF';
console.log(char);  // Output: 뿯

Java:

char c = '\uBFEF';
System.out.println(c);  // Output: 뿯

JSON:

{"text": "\uBFEF"}  // Value: 뿯

Python:

char = '\uBFEF'
print(char)  # Output: 뿯

Perl:

my $char = "\x{BFEF}";
print $char;  # Output: 뿯

PHP:

$char = "\x{BFEF}";
echo $char;  // Output: 뿯

Ruby:

char = "\u{BFEF}"
puts char  # Output: 뿯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49135;</p>  <!-- Display: 뿯 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFEF;</p>  <!-- Display: 뿯 -->

URL Encoding:

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

Encodings

MD5:

afe4666605ba27ca009461bedc032797

SHA1:

e0058573d1aa4adaa96d42cecde361971416d04e

Base64:

67+v