Unicode Finder

"뾱" U+BFB1(HANGUL SYLLABLE BBYOG)

U+BFB1
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYOG

Programming

C
\uBFB1
JavaScript
\uBFB1
Java
\uBFB1
Json
\uBFB1
Python
\uBFB1
Perl
\x{BFB1}
PHP
\x{BFB1}
Ruby
\u{BFB1}
Rust
\u{BFB1}
Go
\uBFB1

Web

CSS
\00BFB1
HtmlDecimal
뾱
HtmlHexadecimal
뾱
Url
%EB%BE%B1

Code

MD5
7fbd041f96e427e829f4e972c4b5dfb8
Sha1
564fcf0e3ddc2ebcd05a251f1bc2575a016b2c58
Base64
676x

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFB1';
console.log(char);  // Output: 뾱

Java:

char c = '\uBFB1';
System.out.println(c);  // Output: 뾱

JSON:

{"text": "\uBFB1"}  // Value: 뾱

Python:

char = '\uBFB1'
print(char)  # Output: 뾱

Perl:

my $char = "\x{BFB1}";
print $char;  # Output: 뾱

PHP:

$char = "\x{BFB1}";
echo $char;  // Output: 뾱

Ruby:

char = "\u{BFB1}"
puts char  # Output: 뾱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49073;</p>  <!-- Display: 뾱 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFB1;</p>  <!-- Display: 뾱 -->

URL Encoding:

// 뾱 URL encoding
https://unicodefinder.com/search.php?query=%EB%BE%B1

Encodings

MD5:

7fbd041f96e427e829f4e972c4b5dfb8

SHA1:

564fcf0e3ddc2ebcd05a251f1bc2575a016b2c58

Base64:

676x