Unicode Finder

"褈" U+8908(CJK UNIFIED IDEOGRAPH-8908)

U+8908
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8908

Programming

C
\u8908
JavaScript
\u8908
Java
\u8908
Json
\u8908
Python
\u8908
Perl
\x{8908}
PHP
\x{8908}
Ruby
\u{8908}
Rust
\u{8908}
Go
\u8908

Web

CSS
\008908
HtmlDecimal
褈
HtmlHexadecimal
褈
Url
%E8%A4%88

Code

MD5
ffa32feed6aabedbc2b065d9458d1f8e
Sha1
2d6fc34f9bf5ce4f2bb521060816107d7cbde209
Base64
6KSI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8908';
console.log(char);  // Output: 褈

Java:

char c = '\u8908';
System.out.println(c);  // Output: 褈

JSON:

{"text": "\u8908"}  // Value: 褈

Python:

char = '\u8908'
print(char)  # Output: 褈

Perl:

my $char = "\x{8908}";
print $char;  # Output: 褈

PHP:

$char = "\x{8908}";
echo $char;  // Output: 褈

Ruby:

char = "\u{8908}"
puts char  # Output: 褈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008908";  /* Display: 褈 */
}

HTML Decimal:

<p>HTML decimal: &#35080;</p>  <!-- Display: 褈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8908;</p>  <!-- Display: 褈 -->

URL Encoding:

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

Encodings

MD5:

ffa32feed6aabedbc2b065d9458d1f8e

SHA1:

2d6fc34f9bf5ce4f2bb521060816107d7cbde209

Base64:

6KSI