Unicode Finder

"뻿" U+BEFF(HANGUL SYLLABLE BBES)

뻿
U+BEFF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBES

Programming

C
\uBEFF
JavaScript
\uBEFF
Java
\uBEFF
Json
\uBEFF
Python
\uBEFF
Perl
\x{BEFF}
PHP
\x{BEFF}
Ruby
\u{BEFF}
Rust
\u{BEFF}
Go
\uBEFF

Web

CSS
\00BEFF
HtmlDecimal
뻿
HtmlHexadecimal
뻿
Url
%EB%BB%BF

Code

MD5
bce23f2dc245f1d7d0ee13f442b098e9
Sha1
3c5354353956d6e1aa8deecdf2a1e9ab64e672e7
Base64
67u/

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBEFF';
console.log(char);  // Output: 뻿

Java:

char c = '\uBEFF';
System.out.println(c);  // Output: 뻿

JSON:

{"text": "\uBEFF"}  // Value: 뻿

Python:

char = '\uBEFF'
print(char)  # Output: 뻿

Perl:

my $char = "\x{BEFF}";
print $char;  # Output: 뻿

PHP:

$char = "\x{BEFF}";
echo $char;  // Output: 뻿

Ruby:

char = "\u{BEFF}"
puts char  # Output: 뻿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48895;</p>  <!-- Display: 뻿 -->

HTML Hexadecimal:

<p>HTML hex: &#xBEFF;</p>  <!-- Display: 뻿 -->

URL Encoding:

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

Encodings

MD5:

bce23f2dc245f1d7d0ee13f442b098e9

SHA1:

3c5354353956d6e1aa8deecdf2a1e9ab64e672e7

Base64:

67u/