Unicode Finder

"餇" U+9907(CJK UNIFIED IDEOGRAPH-9907)

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

Programming

C
\u9907
JavaScript
\u9907
Java
\u9907
Json
\u9907
Python
\u9907
Perl
\x{9907}
PHP
\x{9907}
Ruby
\u{9907}
Rust
\u{9907}
Go
\u9907

Web

CSS
\009907
HtmlDecimal
餇
HtmlHexadecimal
餇
Url
%E9%A4%87

Code

MD5
98c8554c116af045dcc089f2b3de70f1
Sha1
300af167d63ed6381487d2adfa2a2523724655fd
Base64
6aSH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9907';
console.log(char);  // Output: 餇

Java:

char c = '\u9907';
System.out.println(c);  // Output: 餇

JSON:

{"text": "\u9907"}  // Value: 餇

Python:

char = '\u9907'
print(char)  # Output: 餇

Perl:

my $char = "\x{9907}";
print $char;  # Output: 餇

PHP:

$char = "\x{9907}";
echo $char;  // Output: 餇

Ruby:

char = "\u{9907}"
puts char  # Output: 餇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009907";  /* Display: 餇 */
}

HTML Decimal:

<p>HTML decimal: &#39175;</p>  <!-- Display: 餇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9907;</p>  <!-- Display: 餇 -->

URL Encoding:

// 餇 URL encoding
https://unicodefinder.com/search.php?query=%E9%A4%87

Encodings

MD5:

98c8554c116af045dcc089f2b3de70f1

SHA1:

300af167d63ed6381487d2adfa2a2523724655fd

Base64:

6aSH