Unicode Finder

"兄" U+5144(CJK UNIFIED IDEOGRAPH-5144)

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

Programming

C
\u5144
JavaScript
\u5144
Java
\u5144
Json
\u5144
Python
\u5144
Perl
\x{5144}
PHP
\x{5144}
Ruby
\u{5144}
Rust
\u{5144}
Go
\u5144

Web

CSS
\005144
HtmlDecimal
兄
HtmlHexadecimal
兄
Url
%E5%85%84

Code

MD5
63b9b59ee9b7e9f2db9518d9f3082e41
Sha1
1b60f62fba6e4d69d604651388647658f1457aa3
Base64
5YWE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5144';
console.log(char);  // Output: 兄

Java:

char c = '\u5144';
System.out.println(c);  // Output: 兄

JSON:

{"text": "\u5144"}  // Value: 兄

Python:

char = '\u5144'
print(char)  # Output: 兄

Perl:

my $char = "\x{5144}";
print $char;  # Output: 兄

PHP:

$char = "\x{5144}";
echo $char;  // Output: 兄

Ruby:

char = "\u{5144}"
puts char  # Output: 兄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005144";  /* Display: 兄 */
}

HTML Decimal:

<p>HTML decimal: &#20804;</p>  <!-- Display: 兄 -->

HTML Hexadecimal:

<p>HTML hex: &#x5144;</p>  <!-- Display: 兄 -->

URL Encoding:

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

Encodings

MD5:

63b9b59ee9b7e9f2db9518d9f3082e41

SHA1:

1b60f62fba6e4d69d604651388647658f1457aa3

Base64:

5YWE