Unicode Finder

"褥" U+8925(CJK UNIFIED IDEOGRAPH-8925)

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

Programming

C
\u8925
JavaScript
\u8925
Java
\u8925
Json
\u8925
Python
\u8925
Perl
\x{8925}
PHP
\x{8925}
Ruby
\u{8925}
Rust
\u{8925}
Go
\u8925

Web

CSS
\008925
HtmlDecimal
褥
HtmlHexadecimal
褥
Url
%E8%A4%A5

Code

MD5
3a8e1181ba191c204661ff461536de9a
Sha1
5701d594bd4fbbd749df5de7630fdda43f4a7c41
Base64
6KSl

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8925';
console.log(char);  // Output: 褥

Java:

char c = '\u8925';
System.out.println(c);  // Output: 褥

JSON:

{"text": "\u8925"}  // Value: 褥

Python:

char = '\u8925'
print(char)  # Output: 褥

Perl:

my $char = "\x{8925}";
print $char;  # Output: 褥

PHP:

$char = "\x{8925}";
echo $char;  // Output: 褥

Ruby:

char = "\u{8925}"
puts char  # Output: 褥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008925";  /* Display: 褥 */
}

HTML Decimal:

<p>HTML decimal: &#35109;</p>  <!-- Display: 褥 -->

HTML Hexadecimal:

<p>HTML hex: &#x8925;</p>  <!-- Display: 褥 -->

URL Encoding:

// 褥 URL encoding
https://unicodefinder.com/search.php?query=%E8%A4%A5

Encodings

MD5:

3a8e1181ba191c204661ff461536de9a

SHA1:

5701d594bd4fbbd749df5de7630fdda43f4a7c41

Base64:

6KSl