Unicode Finder

"缴" U+7F34(CJK UNIFIED IDEOGRAPH-7F34)

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

Programming

C
\u7F34
JavaScript
\u7F34
Java
\u7F34
Json
\u7F34
Python
\u7F34
Perl
\x{7F34}
PHP
\x{7F34}
Ruby
\u{7F34}
Rust
\u{7F34}
Go
\u7F34

Web

CSS
\007F34
HtmlDecimal
缴
HtmlHexadecimal
缴
Url
%E7%BC%B4

Code

MD5
96f27e29a6e6c192d125b19d86f5df29
Sha1
476ab1f7281bc3960d1252da6f3206c80e5ca477
Base64
57y0

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7F34';
console.log(char);  // Output: 缴

Java:

char c = '\u7F34';
System.out.println(c);  // Output: 缴

JSON:

{"text": "\u7F34"}  // Value: 缴

Python:

char = '\u7F34'
print(char)  # Output: 缴

Perl:

my $char = "\x{7F34}";
print $char;  # Output: 缴

PHP:

$char = "\x{7F34}";
echo $char;  // Output: 缴

Ruby:

char = "\u{7F34}"
puts char  # Output: 缴

Rust:

let c = '\u{7F34}';
println!("{}", c);  // Output: 缴

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007F34";  /* Display: 缴 */
}

HTML Decimal:

<p>HTML decimal: &#32564;</p>  <!-- Display: 缴 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F34;</p>  <!-- Display: 缴 -->

URL Encoding:

// 缴 URL encoding
https://unicodefinder.com/search.php?query=%E7%BC%B4

Encodings

MD5:

96f27e29a6e6c192d125b19d86f5df29

SHA1:

476ab1f7281bc3960d1252da6f3206c80e5ca477

Base64:

57y0