Unicode Finder

"粤" U+7CA4(CJK UNIFIED IDEOGRAPH-7CA4)

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

Programming

C
\u7CA4
JavaScript
\u7CA4
Java
\u7CA4
Json
\u7CA4
Python
\u7CA4
Perl
\x{7CA4}
PHP
\x{7CA4}
Ruby
\u{7CA4}
Rust
\u{7CA4}
Go
\u7CA4

Web

CSS
\007CA4
HtmlDecimal
粤
HtmlHexadecimal
粤
Url
%E7%B2%A4

Code

MD5
e8394793135bc69dceda57c457bd0dad
Sha1
9513d5330d4c1dd67a5ff51a76e378a64235c839
Base64
57Kk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7CA4';
console.log(char);  // Output: 粤

Java:

char c = '\u7CA4';
System.out.println(c);  // Output: 粤

JSON:

{"text": "\u7CA4"}  // Value: 粤

Python:

char = '\u7CA4'
print(char)  # Output: 粤

Perl:

my $char = "\x{7CA4}";
print $char;  # Output: 粤

PHP:

$char = "\x{7CA4}";
echo $char;  // Output: 粤

Ruby:

char = "\u{7CA4}"
puts char  # Output: 粤

Rust:

let c = '\u{7CA4}';
println!("{}", c);  // Output: 粤

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007CA4";  /* Display: 粤 */
}

HTML Decimal:

<p>HTML decimal: &#31908;</p>  <!-- Display: 粤 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CA4;</p>  <!-- Display: 粤 -->

URL Encoding:

// 粤 URL encoding
https://unicodefinder.com/search.php?query=%E7%B2%A4

Encodings

MD5:

e8394793135bc69dceda57c457bd0dad

SHA1:

9513d5330d4c1dd67a5ff51a76e378a64235c839

Base64:

57Kk