Unicode Finder

"褦" U+8926(CJK UNIFIED IDEOGRAPH-8926)

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

Programming

C
\u8926
JavaScript
\u8926
Java
\u8926
Json
\u8926
Python
\u8926
Perl
\x{8926}
PHP
\x{8926}
Ruby
\u{8926}
Rust
\u{8926}
Go
\u8926

Web

CSS
\008926
HtmlDecimal
褦
HtmlHexadecimal
褦
Url
%E8%A4%A6

Code

MD5
e791c9021ad4e751978d0ebd48c30358
Sha1
20bc9468f6c4c962cf27a268dc5e350584cb153d
Base64
6KSm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8926';
console.log(char);  // Output: 褦

Java:

char c = '\u8926';
System.out.println(c);  // Output: 褦

JSON:

{"text": "\u8926"}  // Value: 褦

Python:

char = '\u8926'
print(char)  # Output: 褦

Perl:

my $char = "\x{8926}";
print $char;  # Output: 褦

PHP:

$char = "\x{8926}";
echo $char;  // Output: 褦

Ruby:

char = "\u{8926}"
puts char  # Output: 褦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008926";  /* Display: 褦 */
}

HTML Decimal:

<p>HTML decimal: &#35110;</p>  <!-- Display: 褦 -->

HTML Hexadecimal:

<p>HTML hex: &#x8926;</p>  <!-- Display: 褦 -->

URL Encoding:

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

Encodings

MD5:

e791c9021ad4e751978d0ebd48c30358

SHA1:

20bc9468f6c4c962cf27a268dc5e350584cb153d

Base64:

6KSm