Unicode Finder

"烏" U+70CF(CJK UNIFIED IDEOGRAPH-70CF)

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

Programming

C
\u70CF
JavaScript
\u70CF
Java
\u70CF
Json
\u70CF
Python
\u70CF
Perl
\x{70CF}
PHP
\x{70CF}
Ruby
\u{70CF}
Rust
\u{70CF}
Go
\u70CF

Web

CSS
\0070CF
HtmlDecimal
烏
HtmlHexadecimal
烏
Url
%E7%83%8F

Code

MD5
0fcc0f772e1d9a11429435765a0e43f7
Sha1
5ec08aeaaddc389501afa1f632bf4753070cc0bf
Base64
54OP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u70CF';
console.log(char);  // Output: 烏

Java:

char c = '\u70CF';
System.out.println(c);  // Output: 烏

JSON:

{"text": "\u70CF"}  // Value: 烏

Python:

char = '\u70CF'
print(char)  # Output: 烏

Perl:

my $char = "\x{70CF}";
print $char;  # Output: 烏

PHP:

$char = "\x{70CF}";
echo $char;  // Output: 烏

Ruby:

char = "\u{70CF}"
puts char  # Output: 烏

Rust:

let c = '\u{70CF}';
println!("{}", c);  // Output: 烏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0070CF";  /* Display: 烏 */
}

HTML Decimal:

<p>HTML decimal: &#28879;</p>  <!-- Display: 烏 -->

HTML Hexadecimal:

<p>HTML hex: &#x70CF;</p>  <!-- Display: 烏 -->

URL Encoding:

// 烏 URL encoding
https://unicodefinder.com/search.php?query=%E7%83%8F

Encodings

MD5:

0fcc0f772e1d9a11429435765a0e43f7

SHA1:

5ec08aeaaddc389501afa1f632bf4753070cc0bf

Base64:

54OP