Unicode Finder

"髓" U+9AD3(CJK UNIFIED IDEOGRAPH-9AD3)

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

Programming

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

Web

CSS
\009AD3
HtmlDecimal
髓
HtmlHexadecimal
髓
Url
%E9%AB%93

Code

MD5
4751f99d5b6810d89672b608d81648e4
Sha1
ee705fd9c285f72686f75ca656598f60431a82b2
Base64
6auT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9AD3';
console.log(char);  // Output: 髓

Java:

char c = '\u9AD3';
System.out.println(c);  // Output: 髓

JSON:

{"text": "\u9AD3"}  // Value: 髓

Python:

char = '\u9AD3'
print(char)  # Output: 髓

Perl:

my $char = "\x{9AD3}";
print $char;  # Output: 髓

PHP:

$char = "\x{9AD3}";
echo $char;  // Output: 髓

Ruby:

char = "\u{9AD3}"
puts char  # Output: 髓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39635;</p>  <!-- Display: 髓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AD3;</p>  <!-- Display: 髓 -->

URL Encoding:

// 髓 URL encoding
https://unicodefinder.com/search.php?query=%E9%AB%93

Encodings

MD5:

4751f99d5b6810d89672b608d81648e4

SHA1:

ee705fd9c285f72686f75ca656598f60431a82b2

Base64:

6auT