Unicode Finder

"春" U+6625(CJK UNIFIED IDEOGRAPH-6625)

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

Programming

C
\u6625
JavaScript
\u6625
Java
\u6625
Json
\u6625
Python
\u6625
Perl
\x{6625}
PHP
\x{6625}
Ruby
\u{6625}
Rust
\u{6625}
Go
\u6625

Web

CSS
\006625
HtmlDecimal
春
HtmlHexadecimal
春
Url
%E6%98%A5

Code

MD5
dd201928f77d0211c82423fa4a93cf78
Sha1
3e450648252d8bbde3ec5cb3b62002be9f3bdc49
Base64
5pil

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6625';
console.log(char);  // Output: 春

Java:

char c = '\u6625';
System.out.println(c);  // Output: 春

JSON:

{"text": "\u6625"}  // Value: 春

Python:

char = '\u6625'
print(char)  # Output: 春

Perl:

my $char = "\x{6625}";
print $char;  # Output: 春

PHP:

$char = "\x{6625}";
echo $char;  // Output: 春

Ruby:

char = "\u{6625}"
puts char  # Output: 春

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006625";  /* Display: 春 */
}

HTML Decimal:

<p>HTML decimal: &#26149;</p>  <!-- Display: 春 -->

HTML Hexadecimal:

<p>HTML hex: &#x6625;</p>  <!-- Display: 春 -->

URL Encoding:

// 春 URL encoding
https://unicodefinder.com/search.php?query=%E6%98%A5

Encodings

MD5:

dd201928f77d0211c82423fa4a93cf78

SHA1:

3e450648252d8bbde3ec5cb3b62002be9f3bdc49

Base64:

5pil