Unicode Finder

"犸" U+72B8(CJK UNIFIED IDEOGRAPH-72B8)

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

Programming

C
\u72B8
JavaScript
\u72B8
Java
\u72B8
Json
\u72B8
Python
\u72B8
Perl
\x{72B8}
PHP
\x{72B8}
Ruby
\u{72B8}
Rust
\u{72B8}
Go
\u72B8

Web

CSS
\0072B8
HtmlDecimal
犸
HtmlHexadecimal
犸
Url
%E7%8A%B8

Code

MD5
7452edaa5de00513315be3a2de9fadc6
Sha1
e8bd18fa5093ee287c376999c5686f0bced69852
Base64
54q4

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u72B8';
console.log(char);  // Output: 犸

Java:

char c = '\u72B8';
System.out.println(c);  // Output: 犸

JSON:

{"text": "\u72B8"}  // Value: 犸

Python:

char = '\u72B8'
print(char)  # Output: 犸

Perl:

my $char = "\x{72B8}";
print $char;  # Output: 犸

PHP:

$char = "\x{72B8}";
echo $char;  // Output: 犸

Ruby:

char = "\u{72B8}"
puts char  # Output: 犸

Rust:

let c = '\u{72B8}';
println!("{}", c);  // Output: 犸

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0072B8";  /* Display: 犸 */
}

HTML Decimal:

<p>HTML decimal: &#29368;</p>  <!-- Display: 犸 -->

HTML Hexadecimal:

<p>HTML hex: &#x72B8;</p>  <!-- Display: 犸 -->

URL Encoding:

// 犸 URL encoding
https://unicodefinder.com/search.php?query=%E7%8A%B8

Encodings

MD5:

7452edaa5de00513315be3a2de9fadc6

SHA1:

e8bd18fa5093ee287c376999c5686f0bced69852

Base64:

54q4