Unicode Finder

"焘" U+7118(CJK UNIFIED IDEOGRAPH-7118)

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

Programming

C
\u7118
JavaScript
\u7118
Java
\u7118
Json
\u7118
Python
\u7118
Perl
\x{7118}
PHP
\x{7118}
Ruby
\u{7118}
Rust
\u{7118}
Go
\u7118

Web

CSS
\007118
HtmlDecimal
焘
HtmlHexadecimal
焘
Url
%E7%84%98

Code

MD5
62b0b24b89c14ccad1d293cdd516f6b1
Sha1
d650a9571ed252ad964ce15cc9b2485b6be707cc
Base64
54SY

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7118';
console.log(char);  // Output: 焘

Java:

char c = '\u7118';
System.out.println(c);  // Output: 焘

JSON:

{"text": "\u7118"}  // Value: 焘

Python:

char = '\u7118'
print(char)  # Output: 焘

Perl:

my $char = "\x{7118}";
print $char;  # Output: 焘

PHP:

$char = "\x{7118}";
echo $char;  // Output: 焘

Ruby:

char = "\u{7118}"
puts char  # Output: 焘

Rust:

let c = '\u{7118}';
println!("{}", c);  // Output: 焘

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007118";  /* Display: 焘 */
}

HTML Decimal:

<p>HTML decimal: &#28952;</p>  <!-- Display: 焘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7118;</p>  <!-- Display: 焘 -->

URL Encoding:

// 焘 URL encoding
https://unicodefinder.com/search.php?query=%E7%84%98

Encodings

MD5:

62b0b24b89c14ccad1d293cdd516f6b1

SHA1:

d650a9571ed252ad964ce15cc9b2485b6be707cc

Base64:

54SY