Unicode Finder

"佰" U+4F70(CJK UNIFIED IDEOGRAPH-4F70)

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

Programming

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

Web

CSS
\004F70
HtmlDecimal
佰
HtmlHexadecimal
佰
Url
%E4%BD%B0

Code

MD5
8b6bde9a819e306f091dbe4f9c6cff91
Sha1
51252b4197c9af2c684d6bfa8c34227bf4d4bd46
Base64
5L2w

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F70';
console.log(char);  // Output: 佰

Java:

char c = '\u4F70';
System.out.println(c);  // Output: 佰

JSON:

{"text": "\u4F70"}  // Value: 佰

Python:

char = '\u4F70'
print(char)  # Output: 佰

Perl:

my $char = "\x{4F70}";
print $char;  # Output: 佰

PHP:

$char = "\x{4F70}";
echo $char;  // Output: 佰

Ruby:

char = "\u{4F70}"
puts char  # Output: 佰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20336;</p>  <!-- Display: 佰 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F70;</p>  <!-- Display: 佰 -->

URL Encoding:

// 佰 URL encoding
https://unicodefinder.com/search.php?query=%E4%BD%B0

Encodings

MD5:

8b6bde9a819e306f091dbe4f9c6cff91

SHA1:

51252b4197c9af2c684d6bfa8c34227bf4d4bd46

Base64:

5L2w