Unicode Finder

"秃" U+79C3(CJK UNIFIED IDEOGRAPH-79C3)

U+79C3
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-79C3

Programming

C
\u79C3
JavaScript
\u79C3
Java
\u79C3
Json
\u79C3
Python
\u79C3
Perl
\x{79C3}
PHP
\x{79C3}
Ruby
\u{79C3}
Rust
\u{79C3}
Go
\u79C3

Web

CSS
\0079C3
HtmlDecimal
秃
HtmlHexadecimal
秃
Url
%E7%A7%83

Code

MD5
634e32a39c89110d152c82930cb81f24
Sha1
1cde9280ec7724ad9d114e0462798c7a4edcfc46
Base64
56eD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u79C3';
console.log(char);  // Output: 秃

Java:

char c = '\u79C3';
System.out.println(c);  // Output: 秃

JSON:

{"text": "\u79C3"}  // Value: 秃

Python:

char = '\u79C3'
print(char)  # Output: 秃

Perl:

my $char = "\x{79C3}";
print $char;  # Output: 秃

PHP:

$char = "\x{79C3}";
echo $char;  // Output: 秃

Ruby:

char = "\u{79C3}"
puts char  # Output: 秃

Rust:

let c = '\u{79C3}';
println!("{}", c);  // Output: 秃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0079C3";  /* Display: 秃 */
}

HTML Decimal:

<p>HTML decimal: &#31171;</p>  <!-- Display: 秃 -->

HTML Hexadecimal:

<p>HTML hex: &#x79C3;</p>  <!-- Display: 秃 -->

URL Encoding:

// 秃 URL encoding
https://unicodefinder.com/search.php?query=%E7%A7%83

Encodings

MD5:

634e32a39c89110d152c82930cb81f24

SHA1:

1cde9280ec7724ad9d114e0462798c7a4edcfc46

Base64:

56eD