Unicode Finder

"體" U+9AD4(CJK UNIFIED IDEOGRAPH-9AD4)

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

Programming

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

Web

CSS
\009AD4
HtmlDecimal
體
HtmlHexadecimal
體
Url
%E9%AB%94

Code

MD5
182d8744c92f8e1787a6bc9171abd486
Sha1
c1f64550e499ea0d915751200b6168a63065fcb8
Base64
6auU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9AD4';
console.log(char);  // Output: 體

Java:

char c = '\u9AD4';
System.out.println(c);  // Output: 體

JSON:

{"text": "\u9AD4"}  // Value: 體

Python:

char = '\u9AD4'
print(char)  # Output: 體

Perl:

my $char = "\x{9AD4}";
print $char;  # Output: 體

PHP:

$char = "\x{9AD4}";
echo $char;  // Output: 體

Ruby:

char = "\u{9AD4}"
puts char  # Output: 體

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39636;</p>  <!-- Display: 體 -->

HTML Hexadecimal:

<p>HTML hex: &#x9AD4;</p>  <!-- Display: 體 -->

URL Encoding:

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

Encodings

MD5:

182d8744c92f8e1787a6bc9171abd486

SHA1:

c1f64550e499ea0d915751200b6168a63065fcb8

Base64:

6auU