Unicode Finder

"猼" U+733C(CJK UNIFIED IDEOGRAPH-733C)

U+733C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-733C

Programming

C
\u733C
JavaScript
\u733C
Java
\u733C
Json
\u733C
Python
\u733C
Perl
\x{733C}
PHP
\x{733C}
Ruby
\u{733C}
Rust
\u{733C}
Go
\u733C

Web

CSS
\00733C
HtmlDecimal
猼
HtmlHexadecimal
猼
Url
%E7%8C%BC

Code

MD5
6ebc6d9fbe106d38e57c039fe26e3cc6
Sha1
c40f83c19a4becf3270f460a768575e2c6b7bd9e
Base64
54y8

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u733C';
console.log(char);  // Output: 猼

Java:

char c = '\u733C';
System.out.println(c);  // Output: 猼

JSON:

{"text": "\u733C"}  // Value: 猼

Python:

char = '\u733C'
print(char)  # Output: 猼

Perl:

my $char = "\x{733C}";
print $char;  # Output: 猼

PHP:

$char = "\x{733C}";
echo $char;  // Output: 猼

Ruby:

char = "\u{733C}"
puts char  # Output: 猼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#29500;</p>  <!-- Display: 猼 -->

HTML Hexadecimal:

<p>HTML hex: &#x733C;</p>  <!-- Display: 猼 -->

URL Encoding:

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

Encodings

MD5:

6ebc6d9fbe106d38e57c039fe26e3cc6

SHA1:

c40f83c19a4becf3270f460a768575e2c6b7bd9e

Base64:

54y8