Unicode Finder

"儉" U+5109(CJK UNIFIED IDEOGRAPH-5109)

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

Programming

C
\u5109
JavaScript
\u5109
Java
\u5109
Json
\u5109
Python
\u5109
Perl
\x{5109}
PHP
\x{5109}
Ruby
\u{5109}
Rust
\u{5109}
Go
\u5109

Web

CSS
\005109
HtmlDecimal
儉
HtmlHexadecimal
儉
Url
%E5%84%89

Code

MD5
9b1604b0380108c4d2d2c9c4571522f0
Sha1
6448bc7fd5d99ce15172ff08750ab7c315402c5f
Base64
5YSJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5109';
console.log(char);  // Output: 儉

Java:

char c = '\u5109';
System.out.println(c);  // Output: 儉

JSON:

{"text": "\u5109"}  // Value: 儉

Python:

char = '\u5109'
print(char)  # Output: 儉

Perl:

my $char = "\x{5109}";
print $char;  # Output: 儉

PHP:

$char = "\x{5109}";
echo $char;  // Output: 儉

Ruby:

char = "\u{5109}"
puts char  # Output: 儉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005109";  /* Display: 儉 */
}

HTML Decimal:

<p>HTML decimal: &#20745;</p>  <!-- Display: 儉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5109;</p>  <!-- Display: 儉 -->

URL Encoding:

// 儉 URL encoding
https://unicodefinder.com/search.php?query=%E5%84%89

Encodings

MD5:

9b1604b0380108c4d2d2c9c4571522f0

SHA1:

6448bc7fd5d99ce15172ff08750ab7c315402c5f

Base64:

5YSJ