Unicode Finder

"營" U+71DF(CJK UNIFIED IDEOGRAPH-71DF)

U+71DF
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-71DF

Programming

C
\u71DF
JavaScript
\u71DF
Java
\u71DF
Json
\u71DF
Python
\u71DF
Perl
\x{71DF}
PHP
\x{71DF}
Ruby
\u{71DF}
Rust
\u{71DF}
Go
\u71DF

Web

CSS
\0071DF
HtmlDecimal
營
HtmlHexadecimal
營
Url
%E7%87%9F

Code

MD5
bfcf40c0320010f6221491a228b3e7b7
Sha1
9e06ac60c836c34096884945c0b80717d345a5db
Base64
54ef

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u71DF';
console.log(char);  // Output: 營

Java:

char c = '\u71DF';
System.out.println(c);  // Output: 營

JSON:

{"text": "\u71DF"}  // Value: 營

Python:

char = '\u71DF'
print(char)  # Output: 營

Perl:

my $char = "\x{71DF}";
print $char;  # Output: 營

PHP:

$char = "\x{71DF}";
echo $char;  // Output: 營

Ruby:

char = "\u{71DF}"
puts char  # Output: 營

Rust:

let c = '\u{71DF}';
println!("{}", c);  // Output: 營

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0071DF";  /* Display: 營 */
}

HTML Decimal:

<p>HTML decimal: &#29151;</p>  <!-- Display: 營 -->

HTML Hexadecimal:

<p>HTML hex: &#x71DF;</p>  <!-- Display: 營 -->

URL Encoding:

// 營 URL encoding
https://unicodefinder.com/search.php?query=%E7%87%9F

Encodings

MD5:

bfcf40c0320010f6221491a228b3e7b7

SHA1:

9e06ac60c836c34096884945c0b80717d345a5db

Base64:

54ef