Unicode Finder

"兙" U+5159(CJK UNIFIED IDEOGRAPH-5159)

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

Programming

C
\u5159
JavaScript
\u5159
Java
\u5159
Json
\u5159
Python
\u5159
Perl
\x{5159}
PHP
\x{5159}
Ruby
\u{5159}
Rust
\u{5159}
Go
\u5159

Web

CSS
\005159
HtmlDecimal
兙
HtmlHexadecimal
兙
Url
%E5%85%99

Code

MD5
5956cedd3cf550fe7884395a341d8642
Sha1
9fe6e7c4323d90462386b46cce93872a8d9f97ff
Base64
5YWZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5159';
console.log(char);  // Output: 兙

Java:

char c = '\u5159';
System.out.println(c);  // Output: 兙

JSON:

{"text": "\u5159"}  // Value: 兙

Python:

char = '\u5159'
print(char)  # Output: 兙

Perl:

my $char = "\x{5159}";
print $char;  # Output: 兙

PHP:

$char = "\x{5159}";
echo $char;  // Output: 兙

Ruby:

char = "\u{5159}"
puts char  # Output: 兙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005159";  /* Display: 兙 */
}

HTML Decimal:

<p>HTML decimal: &#20825;</p>  <!-- Display: 兙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5159;</p>  <!-- Display: 兙 -->

URL Encoding:

// 兙 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%99

Encodings

MD5:

5956cedd3cf550fe7884395a341d8642

SHA1:

9fe6e7c4323d90462386b46cce93872a8d9f97ff

Base64:

5YWZ