Unicode Finder

"犟" U+729F(CJK UNIFIED IDEOGRAPH-729F)

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

Programming

C
\u729F
JavaScript
\u729F
Java
\u729F
Json
\u729F
Python
\u729F
Perl
\x{729F}
PHP
\x{729F}
Ruby
\u{729F}
Rust
\u{729F}
Go
\u729F

Web

CSS
\00729F
HtmlDecimal
犟
HtmlHexadecimal
犟
Url
%E7%8A%9F

Code

MD5
16f98c13f8ca93e6abcdede89ef3f835
Sha1
8f4b43f79eb652d29cf6214092bb82badbaed990
Base64
54qf

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u729F';
console.log(char);  // Output: 犟

Java:

char c = '\u729F';
System.out.println(c);  // Output: 犟

JSON:

{"text": "\u729F"}  // Value: 犟

Python:

char = '\u729F'
print(char)  # Output: 犟

Perl:

my $char = "\x{729F}";
print $char;  # Output: 犟

PHP:

$char = "\x{729F}";
echo $char;  // Output: 犟

Ruby:

char = "\u{729F}"
puts char  # Output: 犟

Rust:

let c = '\u{729F}';
println!("{}", c);  // Output: 犟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00729F";  /* Display: 犟 */
}

HTML Decimal:

<p>HTML decimal: &#29343;</p>  <!-- Display: 犟 -->

HTML Hexadecimal:

<p>HTML hex: &#x729F;</p>  <!-- Display: 犟 -->

URL Encoding:

// 犟 URL encoding
https://unicodefinder.com/search.php?query=%E7%8A%9F

Encodings

MD5:

16f98c13f8ca93e6abcdede89ef3f835

SHA1:

8f4b43f79eb652d29cf6214092bb82badbaed990

Base64:

54qf