Unicode Finder

"破" U+7834(CJK UNIFIED IDEOGRAPH-7834)

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

Programming

C
\u7834
JavaScript
\u7834
Java
\u7834
Json
\u7834
Python
\u7834
Perl
\x{7834}
PHP
\x{7834}
Ruby
\u{7834}
Rust
\u{7834}
Go
\u7834

Web

CSS
\007834
HtmlDecimal
破
HtmlHexadecimal
破
Url
%E7%A0%B4

Code

MD5
39f9dff8ce1737f69002d6c09475ee16
Sha1
e22232edc38c987bf109212fe03f4879e109f249
Base64
56C0

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7834';
console.log(char);  // Output: 破

Java:

char c = '\u7834';
System.out.println(c);  // Output: 破

JSON:

{"text": "\u7834"}  // Value: 破

Python:

char = '\u7834'
print(char)  # Output: 破

Perl:

my $char = "\x{7834}";
print $char;  # Output: 破

PHP:

$char = "\x{7834}";
echo $char;  // Output: 破

Ruby:

char = "\u{7834}"
puts char  # Output: 破

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007834";  /* Display: 破 */
}

HTML Decimal:

<p>HTML decimal: &#30772;</p>  <!-- Display: 破 -->

HTML Hexadecimal:

<p>HTML hex: &#x7834;</p>  <!-- Display: 破 -->

URL Encoding:

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

Encodings

MD5:

39f9dff8ce1737f69002d6c09475ee16

SHA1:

e22232edc38c987bf109212fe03f4879e109f249

Base64:

56C0