Unicode Finder

"葒" U+8452(CJK UNIFIED IDEOGRAPH-8452)

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

Programming

C
\u8452
JavaScript
\u8452
Java
\u8452
Json
\u8452
Python
\u8452
Perl
\x{8452}
PHP
\x{8452}
Ruby
\u{8452}
Rust
\u{8452}
Go
\u8452

Web

CSS
\008452
HtmlDecimal
葒
HtmlHexadecimal
葒
Url
%E8%91%92

Code

MD5
ebdb052c744a52194295551355d2a392
Sha1
8ff3759233440303461522fd4cdca267e99ec8ae
Base64
6JGS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8452';
console.log(char);  // Output: 葒

Java:

char c = '\u8452';
System.out.println(c);  // Output: 葒

JSON:

{"text": "\u8452"}  // Value: 葒

Python:

char = '\u8452'
print(char)  # Output: 葒

Perl:

my $char = "\x{8452}";
print $char;  # Output: 葒

PHP:

$char = "\x{8452}";
echo $char;  // Output: 葒

Ruby:

char = "\u{8452}"
puts char  # Output: 葒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008452";  /* Display: 葒 */
}

HTML Decimal:

<p>HTML decimal: &#33874;</p>  <!-- Display: 葒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8452;</p>  <!-- Display: 葒 -->

URL Encoding:

// 葒 URL encoding
https://unicodefinder.com/search.php?query=%E8%91%92

Encodings

MD5:

ebdb052c744a52194295551355d2a392

SHA1:

8ff3759233440303461522fd4cdca267e99ec8ae

Base64:

6JGS