Unicode Finder

"뾴" U+BFB4(HANGUL SYLLABLE BBYON)

U+BFB4
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BBYON

Programming

C
\uBFB4
JavaScript
\uBFB4
Java
\uBFB4
Json
\uBFB4
Python
\uBFB4
Perl
\x{BFB4}
PHP
\x{BFB4}
Ruby
\u{BFB4}
Rust
\u{BFB4}
Go
\uBFB4

Web

CSS
\00BFB4
HtmlDecimal
뾴
HtmlHexadecimal
뾴
Url
%EB%BE%B4

Code

MD5
70cb501de75ab85ccc9e8fa37a682396
Sha1
f634c8114320a44b9514e5dda7c9f8baf70ff286
Base64
6760

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBFB4';
console.log(char);  // Output: 뾴

Java:

char c = '\uBFB4';
System.out.println(c);  // Output: 뾴

JSON:

{"text": "\uBFB4"}  // Value: 뾴

Python:

char = '\uBFB4'
print(char)  # Output: 뾴

Perl:

my $char = "\x{BFB4}";
print $char;  # Output: 뾴

PHP:

$char = "\x{BFB4}";
echo $char;  // Output: 뾴

Ruby:

char = "\u{BFB4}"
puts char  # Output: 뾴

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#49076;</p>  <!-- Display: 뾴 -->

HTML Hexadecimal:

<p>HTML hex: &#xBFB4;</p>  <!-- Display: 뾴 -->

URL Encoding:

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

Encodings

MD5:

70cb501de75ab85ccc9e8fa37a682396

SHA1:

f634c8114320a44b9514e5dda7c9f8baf70ff286

Base64:

6760