Unicode Finder

"灌" U+704C(CJK UNIFIED IDEOGRAPH-704C)

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

Programming

C
\u704C
JavaScript
\u704C
Java
\u704C
Json
\u704C
Python
\u704C
Perl
\x{704C}
PHP
\x{704C}
Ruby
\u{704C}
Rust
\u{704C}
Go
\u704C

Web

CSS
\00704C
HtmlDecimal
灌
HtmlHexadecimal
灌
Url
%E7%81%8C

Code

MD5
02d626b777d9e394379334c01dac405f
Sha1
069519150782ea613a7e3417c1b10ed5fbf23948
Base64
54GM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u704C';
console.log(char);  // Output: 灌

Java:

char c = '\u704C';
System.out.println(c);  // Output: 灌

JSON:

{"text": "\u704C"}  // Value: 灌

Python:

char = '\u704C'
print(char)  # Output: 灌

Perl:

my $char = "\x{704C}";
print $char;  # Output: 灌

PHP:

$char = "\x{704C}";
echo $char;  // Output: 灌

Ruby:

char = "\u{704C}"
puts char  # Output: 灌

Rust:

let c = '\u{704C}';
println!("{}", c);  // Output: 灌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00704C";  /* Display: 灌 */
}

HTML Decimal:

<p>HTML decimal: &#28748;</p>  <!-- Display: 灌 -->

HTML Hexadecimal:

<p>HTML hex: &#x704C;</p>  <!-- Display: 灌 -->

URL Encoding:

// 灌 URL encoding
https://unicodefinder.com/search.php?query=%E7%81%8C

Encodings

MD5:

02d626b777d9e394379334c01dac405f

SHA1:

069519150782ea613a7e3417c1b10ed5fbf23948

Base64:

54GM