Unicode Finder

"龋" U+9F8B(CJK UNIFIED IDEOGRAPH-9F8B)

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

Programming

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

Web

CSS
\009F8B
HtmlDecimal
龋
HtmlHexadecimal
龋
Url
%E9%BE%8B

Code

MD5
0e80e6c1002943f824e33d2dab8c1e63
Sha1
fe6f8607f64b365a08af0f79af03a832eeba90bc
Base64
6b6L

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9F8B';
console.log(char);  // Output: 龋

Java:

char c = '\u9F8B';
System.out.println(c);  // Output: 龋

JSON:

{"text": "\u9F8B"}  // Value: 龋

Python:

char = '\u9F8B'
print(char)  # Output: 龋

Perl:

my $char = "\x{9F8B}";
print $char;  # Output: 龋

PHP:

$char = "\x{9F8B}";
echo $char;  // Output: 龋

Ruby:

char = "\u{9F8B}"
puts char  # Output: 龋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40843;</p>  <!-- Display: 龋 -->

HTML Hexadecimal:

<p>HTML hex: &#x9F8B;</p>  <!-- Display: 龋 -->

URL Encoding:

// 龋 URL encoding
https://unicodefinder.com/search.php?query=%E9%BE%8B

Encodings

MD5:

0e80e6c1002943f824e33d2dab8c1e63

SHA1:

fe6f8607f64b365a08af0f79af03a832eeba90bc

Base64:

6b6L