Unicode Finder

"久" U+4E45(CJK UNIFIED IDEOGRAPH-4E45)

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

Programming

C
\u4E45
JavaScript
\u4E45
Java
\u4E45
Json
\u4E45
Python
\u4E45
Perl
\x{4E45}
PHP
\x{4E45}
Ruby
\u{4E45}
Rust
\u{4E45}
Go
\u4E45

Web

CSS
\004E45
HtmlDecimal
久
HtmlHexadecimal
久
Url
%E4%B9%85

Code

MD5
1a2c726632994fd809c25eec586ba69c
Sha1
2afe6ed6c3a28f11a0e891defccd11517ed08b1b
Base64
5LmF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E45';
console.log(char);  // Output: 久

Java:

char c = '\u4E45';
System.out.println(c);  // Output: 久

JSON:

{"text": "\u4E45"}  // Value: 久

Python:

char = '\u4E45'
print(char)  # Output: 久

Perl:

my $char = "\x{4E45}";
print $char;  # Output: 久

PHP:

$char = "\x{4E45}";
echo $char;  // Output: 久

Ruby:

char = "\u{4E45}"
puts char  # Output: 久

Rust:

let c = '\u{4E45}';
println!("{}", c);  // Output: 久

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004E45";  /* Display: 久 */
}

HTML Decimal:

<p>HTML decimal: &#20037;</p>  <!-- Display: 久 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E45;</p>  <!-- Display: 久 -->

URL Encoding:

// 久 URL encoding
https://unicodefinder.com/search.php?query=%E4%B9%85

Encodings

MD5:

1a2c726632994fd809c25eec586ba69c

SHA1:

2afe6ed6c3a28f11a0e891defccd11517ed08b1b

Base64:

5LmF