Unicode Finder

"뢏" U+B88F(HANGUL SYLLABLE RWAC)

U+B88F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RWAC

Programming

C
\uB88F
JavaScript
\uB88F
Java
\uB88F
Json
\uB88F
Python
\uB88F
Perl
\x{B88F}
PHP
\x{B88F}
Ruby
\u{B88F}
Rust
\u{B88F}
Go
\uB88F

Web

CSS
\00B88F
HtmlDecimal
뢏
HtmlHexadecimal
뢏
Url
%EB%A2%8F

Code

MD5
1d1013e09f48321547516025eb07732e
Sha1
b778163b5c4e6e146c5d15db3e1d9101d4ebecf3
Base64
66KP

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB88F';
console.log(char);  // Output: 뢏

Java:

char c = '\uB88F';
System.out.println(c);  // Output: 뢏

JSON:

{"text": "\uB88F"}  // Value: 뢏

Python:

char = '\uB88F'
print(char)  # Output: 뢏

Perl:

my $char = "\x{B88F}";
print $char;  # Output: 뢏

PHP:

$char = "\x{B88F}";
echo $char;  // Output: 뢏

Ruby:

char = "\u{B88F}"
puts char  # Output: 뢏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47247;</p>  <!-- Display: 뢏 -->

HTML Hexadecimal:

<p>HTML hex: &#xB88F;</p>  <!-- Display: 뢏 -->

URL Encoding:

// 뢏 URL encoding
https://unicodefinder.com/search.php?query=%EB%A2%8F

Encodings

MD5:

1d1013e09f48321547516025eb07732e

SHA1:

b778163b5c4e6e146c5d15db3e1d9101d4ebecf3

Base64:

66KP