Unicode Finder

"뾵" U+BFB5(HANGUL SYLLABLE BBYONJ)

U+BFB5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYONJ

Programming

C
\uBFB5
JavaScript
\uBFB5
Java
\uBFB5
Json
\uBFB5
Python
\uBFB5
Perl
\x{BFB5}
PHP
\x{BFB5}
Ruby
\u{BFB5}
Rust
\u{BFB5}
Go
\uBFB5

Web

CSS
\00BFB5
HtmlDecimal
뾵
HtmlHexadecimal
뾵
Url
%EB%BE%B5

Code

MD5
5f18f3baec4d57f083774a9f9590a2b0
Sha1
f245236e0c7997b7bee44553d21f746cbe09ec16
Base64
6761

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFB5';
console.log(char);  // Output: 뾵

Java:

char c = '\uBFB5';
System.out.println(c);  // Output: 뾵

JSON:

{"text": "\uBFB5"}  // Value: 뾵

Python:

char = '\uBFB5'
print(char)  # Output: 뾵

Perl:

my $char = "\x{BFB5}";
print $char;  # Output: 뾵

PHP:

$char = "\x{BFB5}";
echo $char;  // Output: 뾵

Ruby:

char = "\u{BFB5}"
puts char  # Output: 뾵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49077;</p>  <!-- Display: 뾵 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFB5;</p>  <!-- Display: 뾵 -->

URL Encoding:

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

Encodings

MD5:

5f18f3baec4d57f083774a9f9590a2b0

SHA1:

f245236e0c7997b7bee44553d21f746cbe09ec16

Base64:

6761