Unicode Finder

"龁" U+9F81(CJK UNIFIED IDEOGRAPH-9F81)

U+9F81
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9F81

Programming

C
\u9F81
JavaScript
\u9F81
Java
\u9F81
Json
\u9F81
Python
\u9F81
Perl
\x{9F81}
PHP
\x{9F81}
Ruby
\u{9F81}
Rust
\u{9F81}
Go
\u9F81

Web

CSS
\009F81
HtmlDecimal
龁
HtmlHexadecimal
龁
Url
%E9%BE%81

Code

MD5
4fdf32044ed3246ddb94b576c07840d2
Sha1
9c7f4c0d6b15b44910e75639fcc5adbf1e55ffde
Base64
6b6B

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F81';
console.log(char);  // Output: 龁

Java:

char c = '\u9F81';
System.out.println(c);  // Output: 龁

JSON:

{"text": "\u9F81"}  // Value: 龁

Python:

char = '\u9F81'
print(char)  # Output: 龁

Perl:

my $char = "\x{9F81}";
print $char;  # Output: 龁

PHP:

$char = "\x{9F81}";
echo $char;  // Output: 龁

Ruby:

char = "\u{9F81}"
puts char  # Output: 龁

Rust:

let c = '\u{9F81}';
println!("{}", c);  // Output: 龁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009F81";  /* Display: 龁 */
}

HTML Decimal:

<p>HTML decimal: &#40833;</p>  <!-- Display: 龁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F81;</p>  <!-- Display: 龁 -->

URL Encoding:

// 龁 URL encoding
https://unicodefinder.com/search.php?query=%E9%BE%81

Encodings

MD5:

4fdf32044ed3246ddb94b576c07840d2

SHA1:

9c7f4c0d6b15b44910e75639fcc5adbf1e55ffde

Base64:

6b6B