Unicode Finder

"牙" U+7259(CJK UNIFIED IDEOGRAPH-7259)

U+7259
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7259

Programming

C
\u7259
JavaScript
\u7259
Java
\u7259
Json
\u7259
Python
\u7259
Perl
\x{7259}
PHP
\x{7259}
Ruby
\u{7259}
Rust
\u{7259}
Go
\u7259

Web

CSS
\007259
HtmlDecimal
牙
HtmlHexadecimal
牙
Url
%E7%89%99

Code

MD5
d582052b07a48a149bcdb1fecc76483e
Sha1
87d892e099f4e4b50cfdb122c1307f7ecee4183f
Base64
54mZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7259';
console.log(char);  // Output: 牙

Java:

char c = '\u7259';
System.out.println(c);  // Output: 牙

JSON:

{"text": "\u7259"}  // Value: 牙

Python:

char = '\u7259'
print(char)  # Output: 牙

Perl:

my $char = "\x{7259}";
print $char;  # Output: 牙

PHP:

$char = "\x{7259}";
echo $char;  // Output: 牙

Ruby:

char = "\u{7259}"
puts char  # Output: 牙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007259";  /* Display: 牙 */
}

HTML Decimal:

<p>HTML decimal: &#29273;</p>  <!-- Display: 牙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7259;</p>  <!-- Display: 牙 -->

URL Encoding:

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

Encodings

MD5:

d582052b07a48a149bcdb1fecc76483e

SHA1:

87d892e099f4e4b50cfdb122c1307f7ecee4183f

Base64:

54mZ