Unicode Finder

"뇹" U+B1F9(HANGUL SYLLABLE NYOB)

U+B1F9
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE NYOB

Programming

C
\uB1F9
JavaScript
\uB1F9
Java
\uB1F9
Json
\uB1F9
Python
\uB1F9
Perl
\x{B1F9}
PHP
\x{B1F9}
Ruby
\u{B1F9}
Rust
\u{B1F9}
Go
\uB1F9

Web

CSS
\00B1F9
HtmlDecimal
뇹
HtmlHexadecimal
뇹
Url
%EB%87%B9

Code

MD5
00036bc67b4741551263c197a72f01ab
Sha1
aef22284b4772662a5bfa292586722a825590af4
Base64
64e5

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uB1F9';
console.log(char);  // Output: 뇹

Java:

char c = '\uB1F9';
System.out.println(c);  // Output: 뇹

JSON:

{"text": "\uB1F9"}  // Value: 뇹

Python:

char = '\uB1F9'
print(char)  # Output: 뇹

Perl:

my $char = "\x{B1F9}";
print $char;  # Output: 뇹

PHP:

$char = "\x{B1F9}";
echo $char;  // Output: 뇹

Ruby:

char = "\u{B1F9}"
puts char  # Output: 뇹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45561;</p>  <!-- Display: 뇹 -->

HTML Hexadecimal:

<p>HTML hex: &#xB1F9;</p>  <!-- Display: 뇹 -->

URL Encoding:

// 뇹 URL encoding
https://unicodefinder.com/search.php?query=%EB%87%B9

Encodings

MD5:

00036bc67b4741551263c197a72f01ab

SHA1:

aef22284b4772662a5bfa292586722a825590af4

Base64:

64e5