Unicode Finder

"脩" U+8129(CJK UNIFIED IDEOGRAPH-8129)

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

Programming

C
\u8129
JavaScript
\u8129
Java
\u8129
Json
\u8129
Python
\u8129
Perl
\x{8129}
PHP
\x{8129}
Ruby
\u{8129}
Rust
\u{8129}
Go
\u8129

Web

CSS
\008129
HtmlDecimal
脩
HtmlHexadecimal
脩
Url
%E8%84%A9

Code

MD5
9a7258d101484dc1ad97a368bb08387a
Sha1
39ef00c4c6a043f276f80d7570d82ec03aac1a71
Base64
6ISp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8129';
console.log(char);  // Output: 脩

Java:

char c = '\u8129';
System.out.println(c);  // Output: 脩

JSON:

{"text": "\u8129"}  // Value: 脩

Python:

char = '\u8129'
print(char)  # Output: 脩

Perl:

my $char = "\x{8129}";
print $char;  # Output: 脩

PHP:

$char = "\x{8129}";
echo $char;  // Output: 脩

Ruby:

char = "\u{8129}"
puts char  # Output: 脩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008129";  /* Display: 脩 */
}

HTML Decimal:

<p>HTML decimal: &#33065;</p>  <!-- Display: 脩 -->

HTML Hexadecimal:

<p>HTML hex: &#x8129;</p>  <!-- Display: 脩 -->

URL Encoding:

// 脩 URL encoding
https://unicodefinder.com/search.php?query=%E8%84%A9

Encodings

MD5:

9a7258d101484dc1ad97a368bb08387a

SHA1:

39ef00c4c6a043f276f80d7570d82ec03aac1a71

Base64:

6ISp