Unicode Finder

"牯" U+726F(CJK UNIFIED IDEOGRAPH-726F)

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

Programming

C
\u726F
JavaScript
\u726F
Java
\u726F
Json
\u726F
Python
\u726F
Perl
\x{726F}
PHP
\x{726F}
Ruby
\u{726F}
Rust
\u{726F}
Go
\u726F

Web

CSS
\00726F
HtmlDecimal
牯
HtmlHexadecimal
牯
Url
%E7%89%AF

Code

MD5
ccfbd5b4cc666ac98191babb6aef04ef
Sha1
1e4824b71d91067cdb5949801c1855659b1cc0b4
Base64
54mv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u726F';
console.log(char);  // Output: 牯

Java:

char c = '\u726F';
System.out.println(c);  // Output: 牯

JSON:

{"text": "\u726F"}  // Value: 牯

Python:

char = '\u726F'
print(char)  # Output: 牯

Perl:

my $char = "\x{726F}";
print $char;  # Output: 牯

PHP:

$char = "\x{726F}";
echo $char;  // Output: 牯

Ruby:

char = "\u{726F}"
puts char  # Output: 牯

Rust:

let c = '\u{726F}';
println!("{}", c);  // Output: 牯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00726F";  /* Display: 牯 */
}

HTML Decimal:

<p>HTML decimal: &#29295;</p>  <!-- Display: 牯 -->

HTML Hexadecimal:

<p>HTML hex: &#x726F;</p>  <!-- Display: 牯 -->

URL Encoding:

// 牯 URL encoding
https://unicodefinder.com/search.php?query=%E7%89%AF

Encodings

MD5:

ccfbd5b4cc666ac98191babb6aef04ef

SHA1:

1e4824b71d91067cdb5949801c1855659b1cc0b4

Base64:

54mv